|
musrfit 1.10.0
|
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <stddef.h>#include <sys/types.h>#include <stdint.h>

Go to the source code of this file.
Classes | |
| struct | MUD_CORE |
| struct | _MUD_INDEX |
| struct | _SEEK_ENTRY |
| struct | BUF |
| struct | _MUD_SEC |
| struct | _MUD_SEC_UNKNOWN |
| struct | MUD_SEC_FIXED |
| struct | _MUD_SEC_GRP |
| struct | MUD_SEC_EOF |
| struct | MUD_SEC_CMT |
| struct | MUD_SEC_GEN_RUN_DESC |
| struct | MUD_SEC_GEN_HIST_HDR |
| struct | MUD_SEC_GEN_HIST_DAT |
| struct | MUD_SEC_GEN_ARRAY |
| struct | MUD_SEC_GEN_SCALER |
| struct | MUD_SEC_GEN_IND_VAR |
| struct | MUD_SEC_TRI_TI_RUN_DESC |
Typedefs | |
| typedef int | STATUS |
| typedef char | INT8 |
| typedef unsigned char | UINT8 |
| typedef short | INT16 |
| typedef unsigned short | UINT16 |
| typedef long | INT32 |
| typedef unsigned long | UINT32 |
| typedef float | REAL32 |
| typedef double | REAL64 |
| typedef UINT32 | TIME |
| typedef UINT32 | BOOL |
| typedef int(* | MUD_PROC) (MUD_OPT, void *p1, void *p2) |
| typedef struct _MUD_INDEX | MUD_INDEX |
| typedef struct _SEEK_ENTRY | SEEK_ENTRY |
| typedef struct _MUD_SEC | MUD_SEC |
| typedef struct _MUD_SEC_UNKNOWN | MUD_SEC_UNKNOWN |
| typedef struct _MUD_SEC_GRP | MUD_SEC_GRP |
| typedef UINT16 | MUD_STR_LEN_TYPE |
| typedef UINT16 | MUD_VAR_BIN_LEN_TYPE |
| typedef UINT8 | MUD_VAR_BIN_SIZ_TYPE |
Enumerations | |
| enum | MUD_OPT { MUD_ENCODE = 0 , MUD_DECODE = 1 , MUD_FREE = 2 , MUD_GET_SIZE = 3 , MUD_SHOW = 4 , MUD_HEADS = 5 } |
| enum | MUD_IO_OPT { MUD_ONE = 1 , MUD_ALL = 2 , MUD_GRP = 3 } |
Functions | |
| FILE *MUD_openInput | _ANSI_ARGS_ ((char *inFile)) |
| FILE *MUD_openOutput | _ANSI_ARGS_ ((char *outFile)) |
| void decode_str | _ANSI_ARGS_ ((BUF *pB, char **ps)) |
| void MUD_free | _ANSI_ARGS_ ((void *pMUD)) |
| BOOL MUD_encode | _ANSI_ARGS_ ((BUF *pBuf, void *pMUD, MUD_IO_OPT io_opt)) |
| void *MUD_decode | _ANSI_ARGS_ ((BUF *pBuf)) |
| void MUD_show | _ANSI_ARGS_ ((void *pMUD, MUD_IO_OPT io_opt)) |
| BOOL MUD_writeEnd | _ANSI_ARGS_ ((FILE *fout)) |
| BOOL MUD_writeFile | _ANSI_ARGS_ ((FILE *fout, void *pMUD_head)) |
| BOOL MUD_write | _ANSI_ARGS_ ((FILE *fout, void *pMUD, MUD_IO_OPT io_opt)) |
| BOOL MUD_writeGrpStart | _ANSI_ARGS_ ((FILE *fout, MUD_SEC_GRP *pMUD_parentGrp, MUD_SEC_GRP *pMUD_grp, int numMems)) |
| void addIndex | _ANSI_ARGS_ ((MUD_SEC_GRP *pMUD_grp, void *pMUD)) |
| BOOL MUD_writeGrpMem | _ANSI_ARGS_ ((FILE *fout, MUD_SEC_GRP *pMUD_grp, void *pMUD)) |
| BOOL MUD_writeGrpEnd | _ANSI_ARGS_ ((FILE *fout, MUD_SEC_GRP *pMUD_grp)) |
| void *MUD_readFile | _ANSI_ARGS_ ((FILE *fin)) |
| void *MUD_read | _ANSI_ARGS_ ((FILE *fin, MUD_IO_OPT io_opt)) |
| void *MUD_search | _ANSI_ARGS_ ((void *pMUD_head,...)) |
| int MUD_fseek | _ANSI_ARGS_ ((FILE *fio,...)) |
| MUD_SEC *fseekNext | _ANSI_ARGS_ ((FILE *fio, MUD_SEC_GRP *pMUD_parent, UINT32 secID, UINT32 instanceID)) |
| int MUD_fseekFirst | _ANSI_ARGS_ ((FILE *fio)) |
| void MUD_add | _ANSI_ARGS_ ((void **ppMUD_head, void *pMUD_new)) |
| void MUD_assignCore | _ANSI_ARGS_ ((MUD_SEC *pMUD1, MUD_SEC *pMUD2)) |
| int MUD_CORE_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC *pMUD)) |
| int MUD_INDEX_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_INDEX *pMUD)) |
| void bdecode_2 | _ANSI_ARGS_ ((void *b, void *p)) |
| void bencode_float | _ANSI_ARGS_ ((char *buf, float *fp)) |
| void encode_float | _ANSI_ARGS_ ((BUF *pBuf, float *fp)) |
| void bencode_double | _ANSI_ARGS_ ((char *buf, double *dp)) |
| void encode_double | _ANSI_ARGS_ ((BUF *pBuf, double *fp)) |
| MUD_SEC *MUD_new | _ANSI_ARGS_ ((UINT32 secID, UINT32 instanceID)) |
| int MUD_SEC_EOF_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_EOF *pMUD)) |
| int MUD_SEC_FIXED_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_FIXED *pMUD)) |
| int MUD_SEC_GRP_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_GRP *pMUD)) |
| int MUD_SEC_CMT_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_CMT *pMUD)) |
| int MUD_SEC_UNKNOWN_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_UNKNOWN *pMUD)) |
| int MUD_SEC_GEN_RUN_DESC_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_RUN_DESC *pMUD)) |
| int MUD_SEC_GEN_HIST_HDR_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_HIST_HDR *pMUD)) |
| int MUD_SEC_GEN_HIST_DAT_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_HIST_DAT *pMUD)) |
| int MUD_SEC_GEN_SCALER_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_SCALER *pMUD)) |
| int MUD_SEC_GEN_IND_VAR_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_IND_VAR *pMUD)) |
| int MUD_SEC_GEN_ARRAY_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_ARRAY *pMUD)) |
| int MUD_SEC_GEN_HIST_pack | _ANSI_ARGS_ ((int num, int inBinSize, void *inHist, int outBinSize, void *outHist)) |
| int MUD_SEC_TRI_TI_RUN_DESC_proc | _ANSI_ARGS_ ((MUD_OPT op, BUF *pBuf, MUD_SEC_TRI_TI_RUN_DESC *pMUD)) |
| void GMF_MKTIME | _ANSI_ARGS_ ((TIME *out, INT32 *input)) |
| void GMF_TIME | _ANSI_ARGS_ ((TIME *out)) |
| void GMF_LOCALTIME | _ANSI_ARGS_ ((TIME *in, INT32 *out)) |
| int MUD_openRead | _ANSI_ARGS_ ((char *filename, UINT32 *pType)) |
| int MUD_openWrite | _ANSI_ARGS_ ((char *filename, UINT32 type)) |
| int MUD_closeRead | _ANSI_ARGS_ ((int fd)) |
| int MUD_closeWriteFile | _ANSI_ARGS_ ((int fd, char *outfile)) |
| int MUD_getRunDesc | _ANSI_ARGS_ ((int fd, UINT32 *pType)) |
| int MUD_getExptNumber | _ANSI_ARGS_ ((int fd, UINT32 *pExptNumber)) |
| int MUD_getRunNumber | _ANSI_ARGS_ ((int fd, UINT32 *pRunNumber)) |
| int MUD_getElapsedSec | _ANSI_ARGS_ ((int fd, UINT32 *pElapsedSec)) |
| int MUD_getTimeBegin | _ANSI_ARGS_ ((int fd, UINT32 *TimeBegin)) |
| int MUD_getTimeEnd | _ANSI_ARGS_ ((int fd, UINT32 *TimeEnd)) |
| int MUD_getTitle | _ANSI_ARGS_ ((int fd, char *title, int strdim)) |
| int MUD_getLab | _ANSI_ARGS_ ((int fd, char *lab, int strdim)) |
| int MUD_getArea | _ANSI_ARGS_ ((int fd, char *area, int strdim)) |
| int MUD_getMethod | _ANSI_ARGS_ ((int fd, char *method, int strdim)) |
| int MUD_getApparatus | _ANSI_ARGS_ ((int fd, char *apparatus, int strdim)) |
| int MUD_getInsert | _ANSI_ARGS_ ((int fd, char *insert, int strdim)) |
| int MUD_getSample | _ANSI_ARGS_ ((int fd, char *sample, int strdim)) |
| int MUD_getOrient | _ANSI_ARGS_ ((int fd, char *orient, int strdim)) |
| int MUD_getDas | _ANSI_ARGS_ ((int fd, char *das, int strdim)) |
| int MUD_getExperimenter | _ANSI_ARGS_ ((int fd, char *experimenter, int strdim)) |
| int MUD_getTemperature | _ANSI_ARGS_ ((int fd, char *temperature, int strdim)) |
| int MUD_getField | _ANSI_ARGS_ ((int fd, char *field, int strdim)) |
| int MUD_getSubtitle | _ANSI_ARGS_ ((int fd, char *subtitle, int strdim)) |
| int MUD_getComment1 | _ANSI_ARGS_ ((int fd, char *comment1, int strdim)) |
| int MUD_getComment2 | _ANSI_ARGS_ ((int fd, char *comment2, int strdim)) |
| int MUD_getComment3 | _ANSI_ARGS_ ((int fd, char *comment3, int strdim)) |
| int MUD_setRunDesc | _ANSI_ARGS_ ((int fd, UINT32 type)) |
| int MUD_setExptNumber | _ANSI_ARGS_ ((int fd, UINT32 exptNumber)) |
| int MUD_setRunNumber | _ANSI_ARGS_ ((int fd, UINT32 runNumber)) |
| int MUD_setElapsedSec | _ANSI_ARGS_ ((int fd, UINT32 elapsedSec)) |
| int MUD_setTimeBegin | _ANSI_ARGS_ ((int fd, UINT32 timeBegin)) |
| int MUD_setTimeEnd | _ANSI_ARGS_ ((int fd, UINT32 timeEnd)) |
| int MUD_setTitle | _ANSI_ARGS_ ((int fd, char *title)) |
| int MUD_setLab | _ANSI_ARGS_ ((int fd, char *lab)) |
| int MUD_setArea | _ANSI_ARGS_ ((int fd, char *area)) |
| int MUD_setMethod | _ANSI_ARGS_ ((int fd, char *method)) |
| int MUD_setApparatus | _ANSI_ARGS_ ((int fd, char *apparatus)) |
| int MUD_setInsert | _ANSI_ARGS_ ((int fd, char *insert)) |
| int MUD_setSample | _ANSI_ARGS_ ((int fd, char *sample)) |
| int MUD_setOrient | _ANSI_ARGS_ ((int fd, char *orient)) |
| int MUD_setDas | _ANSI_ARGS_ ((int fd, char *das)) |
| int MUD_setExperimenter | _ANSI_ARGS_ ((int fd, char *experimenter)) |
| int MUD_setTemperature | _ANSI_ARGS_ ((int fd, char *temperature)) |
| int MUD_setField | _ANSI_ARGS_ ((int fd, char *field)) |
| int MUD_setSubtitle | _ANSI_ARGS_ ((int fd, char *subtitle)) |
| int MUD_setComment1 | _ANSI_ARGS_ ((int fd, char *comment1)) |
| int MUD_setComment2 | _ANSI_ARGS_ ((int fd, char *comment2)) |
| int MUD_setComment3 | _ANSI_ARGS_ ((int fd, char *comment3)) |
| int MUD_getComments | _ANSI_ARGS_ ((int fd, UINT32 *pType, UINT32 *pNum)) |
| int MUD_getCommentPrev | _ANSI_ARGS_ ((int fd, int num, UINT32 *pPrev)) |
| int MUD_getCommentNext | _ANSI_ARGS_ ((int fd, int num, UINT32 *pNext)) |
| int MUD_getCommentTime | _ANSI_ARGS_ ((int fd, int num, UINT32 *pTime)) |
| int MUD_getCommentAuthor | _ANSI_ARGS_ ((int fd, int num, char *author, int strdim)) |
| int MUD_getCommentTitle | _ANSI_ARGS_ ((int fd, int num, char *title, int strdim)) |
| int MUD_getCommentBody | _ANSI_ARGS_ ((int fd, int num, char *body, int strdim)) |
| int MUD_setComments | _ANSI_ARGS_ ((int fd, UINT32 type, UINT32 num)) |
| int MUD_setCommentPrev | _ANSI_ARGS_ ((int fd, int num, UINT32 prev)) |
| int MUD_setCommentNext | _ANSI_ARGS_ ((int fd, int num, UINT32 next)) |
| int MUD_setCommentTime | _ANSI_ARGS_ ((int fd, int num, UINT32 time)) |
| int MUD_setCommentAuthor | _ANSI_ARGS_ ((int fd, int num, char *author)) |
| int MUD_setCommentTitle | _ANSI_ARGS_ ((int fd, int num, char *title)) |
| int MUD_setCommentBody | _ANSI_ARGS_ ((int fd, int num, char *body)) |
| int MUD_getHistType | _ANSI_ARGS_ ((int fd, int num, UINT32 *pType)) |
| int MUD_getHistNumBytes | _ANSI_ARGS_ ((int fd, int num, UINT32 *pNumBytes)) |
| int MUD_getHistNumBins | _ANSI_ARGS_ ((int fd, int num, UINT32 *pNumBins)) |
| int MUD_getHistBytesPerBin | _ANSI_ARGS_ ((int fd, int num, UINT32 *pBytesPerBin)) |
| int MUD_getHistFsPerBin | _ANSI_ARGS_ ((int fd, int num, UINT32 *pFsPerBin)) |
| int MUD_getHistSecondsPerBin | _ANSI_ARGS_ ((int fd, int num, REAL64 *pSecondsPerBin)) |
| int MUD_getHistT0_Ps | _ANSI_ARGS_ ((int fd, int num, UINT32 *pT0_ps)) |
| int MUD_getHistT0_Bin | _ANSI_ARGS_ ((int fd, int num, UINT32 *pT0_bin)) |
| int MUD_getHistGoodBin1 | _ANSI_ARGS_ ((int fd, int num, UINT32 *pGoodBin1)) |
| int MUD_getHistGoodBin2 | _ANSI_ARGS_ ((int fd, int num, UINT32 *pGoodBin2)) |
| int MUD_getHistBkgd1 | _ANSI_ARGS_ ((int fd, int num, UINT32 *pBkgd1)) |
| int MUD_getHistBkgd2 | _ANSI_ARGS_ ((int fd, int num, UINT32 *pBkgd2)) |
| int MUD_getHistNumEvents | _ANSI_ARGS_ ((int fd, int num, UINT32 *pNumEvents)) |
| int MUD_getHistData | _ANSI_ARGS_ ((int fd, int num, void *pData)) |
| int MUD_getHistpData | _ANSI_ARGS_ ((int fd, int num, void **ppData)) |
| int MUD_getHistTimeData | _ANSI_ARGS_ ((int fd, int num, UINT32 *pTimeData)) |
| int MUD_getHistpTimeData | _ANSI_ARGS_ ((int fd, int num, UINT32 **ppTimeData)) |
| int MUD_setHistType | _ANSI_ARGS_ ((int fd, int num, UINT32 type)) |
| int MUD_setHistNumBytes | _ANSI_ARGS_ ((int fd, int num, UINT32 numBytes)) |
| int MUD_setHistNumBins | _ANSI_ARGS_ ((int fd, int num, UINT32 numBins)) |
| int MUD_setHistBytesPerBin | _ANSI_ARGS_ ((int fd, int num, UINT32 bytesPerBin)) |
| int MUD_setHistFsPerBin | _ANSI_ARGS_ ((int fd, int num, UINT32 fsPerBin)) |
| int MUD_setHistSecondsPerBin | _ANSI_ARGS_ ((int fd, int num, REAL64 secondsPerBin)) |
| int MUD_setHistT0_Ps | _ANSI_ARGS_ ((int fd, int num, UINT32 t0_ps)) |
| int MUD_setHistT0_Bin | _ANSI_ARGS_ ((int fd, int num, UINT32 t0_bin)) |
| int MUD_setHistGoodBin1 | _ANSI_ARGS_ ((int fd, int num, UINT32 goodBin1)) |
| int MUD_setHistGoodBin2 | _ANSI_ARGS_ ((int fd, int num, UINT32 goodBin2)) |
| int MUD_setHistBkgd1 | _ANSI_ARGS_ ((int fd, int num, UINT32 bkgd1)) |
| int MUD_setHistBkgd2 | _ANSI_ARGS_ ((int fd, int num, UINT32 bkgd2)) |
| int MUD_setHistNumEvents | _ANSI_ARGS_ ((int fd, int num, UINT32 numEvents)) |
| int MUD_pack | _ANSI_ARGS_ ((int num, int inBinSize, void *inArray, int outBinSize, void *outArray)) |
| int MUD_getScalerLabel | _ANSI_ARGS_ ((int fd, int num, char *label, int strdim)) |
| int MUD_getScalerCounts | _ANSI_ARGS_ ((int fd, int num, UINT32 *pCounts)) |
| int MUD_setScalerLabel | _ANSI_ARGS_ ((int fd, int num, char *label)) |
| int MUD_getIndVarLow | _ANSI_ARGS_ ((int fd, int num, double *pLow)) |
| int MUD_getIndVarHigh | _ANSI_ARGS_ ((int fd, int num, double *pHigh)) |
| int MUD_getIndVarMean | _ANSI_ARGS_ ((int fd, int num, double *pMean)) |
| int MUD_getIndVarStddev | _ANSI_ARGS_ ((int fd, int num, double *pStddev)) |
| int MUD_getIndVarSkewness | _ANSI_ARGS_ ((int fd, int num, double *pSkewness)) |
| int MUD_getIndVarName | _ANSI_ARGS_ ((int fd, int num, char *name, int strdim)) |
| int MUD_getIndVarDescription | _ANSI_ARGS_ ((int fd, int num, char *description, int strdim)) |
| int MUD_getIndVarUnits | _ANSI_ARGS_ ((int fd, int num, char *units, int strdim)) |
| int MUD_getIndVarNumData | _ANSI_ARGS_ ((int fd, int num, UINT32 *pNumData)) |
| int MUD_getIndVarElemSize | _ANSI_ARGS_ ((int fd, int num, UINT32 *pElemSize)) |
| int MUD_getIndVarDataType | _ANSI_ARGS_ ((int fd, int num, UINT32 *pDataType)) |
| int MUD_getIndVarHasTime | _ANSI_ARGS_ ((int fd, int num, UINT32 *pHasTime)) |
| int MUD_setIndVarLow | _ANSI_ARGS_ ((int fd, int num, double low)) |
| int MUD_setIndVarHigh | _ANSI_ARGS_ ((int fd, int num, double high)) |
| int MUD_setIndVarMean | _ANSI_ARGS_ ((int fd, int num, double mean)) |
| int MUD_setIndVarStddev | _ANSI_ARGS_ ((int fd, int num, double stddev)) |
| int MUD_setIndVarSkewness | _ANSI_ARGS_ ((int fd, int num, double skewness)) |
| int MUD_setIndVarName | _ANSI_ARGS_ ((int fd, int num, char *name)) |
| int MUD_setIndVarDescription | _ANSI_ARGS_ ((int fd, int num, char *description)) |
| int MUD_setIndVarUnits | _ANSI_ARGS_ ((int fd, int num, char *units)) |
| int MUD_setIndVarNumData | _ANSI_ARGS_ ((int fd, int num, UINT32 numData)) |
| int MUD_setIndVarElemSize | _ANSI_ARGS_ ((int fd, int num, UINT32 elemSize)) |
| int MUD_setIndVarDataType | _ANSI_ARGS_ ((int fd, int num, UINT32 dataType)) |
| int MUD_setIndVarHasTime | _ANSI_ARGS_ ((int fd, int num, UINT32 hasTime)) |
| #define _decode_obj | ( | b, | |
| p, | |||
| s ) |
Definition at line 444 of file mud.h.
Referenced by MUD_SEC_GEN_ARRAY_proc(), and MUD_SEC_GEN_HIST_DAT_proc().
| #define _encode_obj | ( | b, | |
| p, | |||
| s ) |
Definition at line 446 of file mud.h.
Referenced by MUD_SEC_GEN_ARRAY_proc(), and MUD_SEC_GEN_HIST_DAT_proc().
| #define _free | ( | objp | ) |
Definition at line 198 of file mud.h.
Referenced by MUD_read(), MUD_SEC_CMT_proc(), MUD_SEC_GEN_ARRAY_proc(), MUD_SEC_GEN_HIST_DAT_proc(), MUD_SEC_GEN_HIST_HDR_proc(), MUD_SEC_GEN_IND_VAR_proc(), MUD_SEC_GEN_RUN_DESC_proc(), MUD_SEC_GEN_SCALER_proc(), MUD_SEC_TRI_TI_RUN_DESC_proc(), MUD_setHistData(), MUD_setIndVarData(), MUD_setIndVarTimeData(), MUD_setScalerLabel(), and MUD_write().
| #define _roundUp | ( | n, | |
| r ) |
| #define _strlen | ( | s | ) |
Definition at line 193 of file mud.h.
Referenced by encode_str(), MUD_SEC_CMT_proc(), MUD_SEC_GEN_HIST_HDR_proc(), MUD_SEC_GEN_IND_VAR_proc(), MUD_SEC_GEN_RUN_DESC_proc(), MUD_SEC_GEN_SCALER_proc(), and MUD_SEC_TRI_TI_RUN_DESC_proc().
| #define _swap16 | ( | s | ) |
| #define _swap2bytes | ( | s | ) |
Definition at line 436 of file mud.h.
Referenced by bdecode_2(), and bencode_2().
| #define _swap32 | ( | l | ) |
| #define _swap4bytes | ( | l | ) |
Definition at line 437 of file mud.h.
Referenced by bdecode_4(), bdecode_8(), bencode_4(), and bencode_8().
| #define bdecode_1 | ( | b, | |
| p ) |
Definition at line 441 of file mud.h.
Referenced by MUD_SEC_GEN_HIST_dopack(), and varBinArray().
| #define bencode_1 | ( | b, | |
| p ) |
Definition at line 442 of file mud.h.
Referenced by MUD_SEC_GEN_HIST_dopack().
| #define decode_2 | ( | b, | |
| p ) |
| #define decode_4 | ( | b, | |
| p ) |
Definition at line 454 of file mud.h.
Referenced by MUD_CORE_proc(), MUD_INDEX_proc(), MUD_SEC_CMT_proc(), MUD_SEC_FIXED_proc(), MUD_SEC_GEN_ARRAY_proc(), MUD_SEC_GEN_HIST_DAT_proc(), MUD_SEC_GEN_HIST_HDR_proc(), MUD_SEC_GEN_RUN_DESC_proc(), MUD_SEC_GEN_SCALER_proc(), MUD_SEC_GRP_proc(), and MUD_SEC_TRI_TI_RUN_DESC_proc().
| #define decode_8 | ( | b, | |
| p ) |
| #define decode_packed | ( | b, | |
| p, | |||
| n ) |
| #define encode_2 | ( | b, | |
| p ) |
| #define encode_4 | ( | b, | |
| p ) |
Definition at line 456 of file mud.h.
Referenced by MUD_CORE_proc(), MUD_INDEX_proc(), MUD_SEC_CMT_proc(), MUD_SEC_FIXED_proc(), MUD_SEC_GEN_ARRAY_proc(), MUD_SEC_GEN_HIST_DAT_proc(), MUD_SEC_GEN_HIST_HDR_proc(), MUD_SEC_GEN_RUN_DESC_proc(), MUD_SEC_GEN_SCALER_proc(), MUD_SEC_GRP_proc(), and MUD_SEC_TRI_TI_RUN_DESC_proc().
| #define encode_8 | ( | b, | |
| p ) |
| #define encode_packed | ( | b, | |
| p, | |||
| n ) |
| #define FALSE 0 |
Definition at line 161 of file mud.h.
Referenced by fseekNext(), MUD_encode(), MUD_fseek(), MUD_write(), MUD_writeEnd(), MUD_writeFile(), MUD_writeGrpEnd(), and MUD_writeGrpMem().
| #define MUD_FMT_ALL_ID (MUD_LAB_ALL_ID|0x00010000) |
| #define MUD_FMT_GEN_ID (MUD_LAB_ALL_ID|0x00020000) |
| #define MUD_FMT_TRI_TD_ID (MUD_LAB_TRI_ID|0x00010000) |
Definition at line 57 of file mud.h.
Referenced by MUD_getRunDesc(), MUD_setRunDesc(), and PRunDataHandler::WriteMudFile().
| #define MUD_FMT_TRI_TI_ID (MUD_LAB_TRI_ID|0x00020000) |
Definition at line 58 of file mud.h.
Referenced by MUD_getRunDesc(), and MUD_setRunDesc().
| #define MUD_GRP_CMT_ID MUD_SEC_CMT_ID |
| #define MUD_GRP_GEN_HIST_ID (MUD_FMT_GEN_ID|0x00000002) |
| #define MUD_GRP_GEN_IND_VAR_ARR_ID (MUD_FMT_GEN_ID|0x00000006) |
Definition at line 83 of file mud.h.
Referenced by MUD_getIndVars(), and MUD_setIndVars().
| #define MUD_GRP_GEN_IND_VAR_ID (MUD_FMT_GEN_ID|0x00000005) |
Definition at line 82 of file mud.h.
Referenced by MUD_getIndVars().
| #define MUD_GRP_GEN_SCALER_ID (MUD_FMT_GEN_ID|0x00000004) |
| #define MUD_GRP_RAL_HIST_ID MUD_SEC_RAL_HIST_ID |
| #define MUD_GRP_TRI_TD_HIST_ID (MUD_FMT_TRI_TD_ID|0x00000002) |
Definition at line 90 of file mud.h.
Referenced by _cmt_uint_getproc(), and PRunDataHandler::WriteMudFile().
| #define MUD_GRP_TRI_TD_SCALER_ID (MUD_FMT_TRI_TD_ID|0x00000004) |
| #define MUD_GRP_TRI_TI_HIST_ID MUD_SEC_TRI_TI_HIST_ID |
Definition at line 98 of file mud.h.
Referenced by _cmt_uint_getproc().
| #define MUD_instanceID | ( | pM | ) |
Definition at line 427 of file mud.h.
Referenced by _cmt_uint_getproc(), _desc_uint_getproc(), addIndex(), fseekNext(), MUD_getIndVars(), MUD_getRunDesc(), MUD_getScalers(), MUD_openRead(), MUD_openReadWrite(), MUD_search(), MUD_setRunDesc(), and MUD_setSizes().
| #define MUD_SEC_CMT_ID (MUD_FMT_ALL_ID|0x00000005) |
Definition at line 67 of file mud.h.
Referenced by MUD_new(), and MUD_setComments().
| #define MUD_SEC_EOF_ID (MUD_FMT_ALL_ID|0x00000004) |
Definition at line 66 of file mud.h.
Referenced by fseekNext(), MUD_fseek(), MUD_heads(), MUD_new(), MUD_read(), MUD_show(), and MUD_writeEnd().
| #define MUD_SEC_FIXED_ID (MUD_FMT_ALL_ID|0x00000002) |
| #define MUD_SEC_GEN_ARRAY_ID (MUD_FMT_GEN_ID|0x00000007) |
Definition at line 78 of file mud.h.
Referenced by MUD_new(), and MUD_setIndVars().
| #define MUD_SEC_GEN_HIST_DAT_ID (MUD_FMT_GEN_ID|0x00000003) |
Definition at line 75 of file mud.h.
Referenced by _hist_uint_getproc(), MUD_getHistData(), MUD_new(), MUD_setHistData(), MUD_setHistpData(), and MUD_setHists().
| #define MUD_SEC_GEN_HIST_HDR_ID (MUD_FMT_GEN_ID|0x00000002) |
Definition at line 74 of file mud.h.
Referenced by MUD_getHistData(), MUD_new(), MUD_setHistData(), and MUD_setHists().
| #define MUD_SEC_GEN_IND_VAR_ID (MUD_FMT_GEN_ID|0x00000005) |
Definition at line 77 of file mud.h.
Referenced by MUD_new(), and MUD_setIndVars().
| #define MUD_SEC_GEN_RUN_DESC_ID (MUD_FMT_GEN_ID|0x00000001) |
Definition at line 73 of file mud.h.
Referenced by MUD_getRunDesc(), MUD_new(), MUD_setRunDesc(), and PRunDataHandler::WriteMudFile().
| #define MUD_SEC_GEN_SCALER_ID (MUD_FMT_GEN_ID|0x00000004) |
Definition at line 76 of file mud.h.
Referenced by MUD_new(), and MUD_setScalers().
| #define MUD_SEC_GRP_ID (MUD_FMT_ALL_ID|0x00000003) |
Definition at line 65 of file mud.h.
Referenced by MUD_encode(), MUD_fseek(), MUD_heads(), MUD_new(), MUD_openWrite(), MUD_read(), MUD_search(), MUD_setComments(), MUD_setHists(), MUD_setIndVars(), MUD_setScalers(), MUD_setSizes(), MUD_show(), MUD_totSize(), and MUD_writeGrpMem().
| #define MUD_SEC_ID (MUD_FMT_ALL_ID|0x00000001) |
| #define MUD_SEC_TRI_TD_HIST_ID (MUD_FMT_TRI_TD_ID|0x00000002) |
| #define MUD_SEC_TRI_TI_HIST_ID (MUD_FMT_TRI_TI_ID|0x00000002) |
| #define MUD_SEC_TRI_TI_RUN_DESC_ID (MUD_FMT_TRI_TI_ID|0x00000001) |
Definition at line 95 of file mud.h.
Referenced by MUD_getRunDesc(), MUD_new(), and MUD_setRunDesc().
| #define MUD_secID | ( | pM | ) |
Definition at line 426 of file mud.h.
Referenced by addIndex(), fseekNext(), MUD_encode(), MUD_fseek(), MUD_heads(), MUD_read(), MUD_search(), MUD_setSizes(), MUD_show(), MUD_totSize(), and MUD_writeGrpMem().
| #define MUD_size | ( | pM | ) |
Definition at line 425 of file mud.h.
Referenced by fseekNext(), MUD_decode(), MUD_encode(), MUD_fseek(), and MUD_totSize().
| #define NULL 0 |
Definition at line 167 of file mud.h.
Referenced by _hist_uint_getproc(), addIndex(), addRun_readInputFiles(), decode_str(), fseekNext(), MuSR_td_PSI_bin::GetHistoFromT0MinusBkgArray(), MUD_add(), MUD_addToGroup(), MUD_assignCore(), MUD_closeRead(), MUD_closeWrite(), MUD_closeWriteFile(), MUD_decode(), MUD_encode(), MUD_free(), MUD_fseek(), MUD_fseekFirst(), MUD_getHistData(), MUD_getRunDesc(), MUD_getSize(), MUD_heads(), MUD_INDEX_proc(), MUD_new(), MUD_openInOut(), MUD_openInput(), MUD_openOutput(), MUD_openRead(), MUD_openReadWrite(), MUD_openWrite(), MUD_peekCore(), MUD_read(), MUD_search(), MUD_SEC_GRP_proc(), MUD_setComments(), MUD_setHistData(), MUD_setHistpData(), MUD_setHists(), MUD_setIndVars(), MUD_setRunDesc(), MUD_setScalers(), MUD_setSizes(), MUD_show(), MUD_write(), MUD_writeEnd(), MUD_writeGrpEnd(), and MUD_writeGrpStart().
| #define TRUE 1 |
Definition at line 164 of file mud.h.
Referenced by fseekNext(), MUD_encode(), MUD_fseek(), MUD_write(), MUD_writeEnd(), MUD_writeGrpEnd(), MUD_writeGrpMem(), and MUD_writeGrpStart().
| #define zalloc | ( | n | ) |
Definition at line 201 of file mud.h.
Referenced by addIndex(), decode_str(), MUD_encode(), MUD_fseek(), MUD_new(), MUD_peekCore(), MUD_read(), MUD_search(), MUD_SEC_GEN_ARRAY_proc(), MUD_SEC_GEN_HIST_DAT_proc(), MUD_SEC_GRP_proc(), MUD_setHistData(), MUD_setIndVarData(), and MUD_setIndVarTimeData().
| typedef struct _MUD_INDEX MUD_INDEX |
| typedef struct _MUD_SEC_GRP MUD_SEC_GRP |
| typedef struct _MUD_SEC_UNKNOWN MUD_SEC_UNKNOWN |
| typedef UINT16 MUD_STR_LEN_TYPE |
| typedef UINT16 MUD_VAR_BIN_LEN_TYPE |
| typedef UINT8 MUD_VAR_BIN_SIZ_TYPE |
| typedef struct _SEEK_ENTRY SEEK_ENTRY |
| enum MUD_IO_OPT |
| enum MUD_OPT |
| void encode_str _ANSI_ARGS_ | ( | (BUF *pB, char **ps) | ) |
References decode_str(), and encode_str().
| void *MUD_decode _ANSI_ARGS_ | ( | (BUF *pBuf) | ) |
References MUD_decode(), and MUD_getSize().
| void decode_double _ANSI_ARGS_ | ( | (BUF *pBuf, double *fp) | ) |
References bdecode_double(), decode_double(), and encode_double().
| void decode_float _ANSI_ARGS_ | ( | (BUF *pBuf, float *fp) | ) |
References bdecode_float(), decode_float(), and encode_float().
| BOOL MUD_encode _ANSI_ARGS_ | ( | (BUF *pBuf, void *pMUD, MUD_IO_OPT io_opt) | ) |
References MUD_encode().
| void bdecode_double _ANSI_ARGS_ | ( | (char *buf, double *dp) | ) |
References bencode_double().
| void bdecode_float _ANSI_ARGS_ | ( | (char *buf, float *fp) | ) |
References bencode_float().
| int MUD_openReadWrite _ANSI_ARGS_ | ( | (char *filename, UINT32 *pType) | ) |
References MUD_openRead().
| int MUD_openWrite _ANSI_ARGS_ | ( | (char *filename, UINT32 type) | ) |
References MUD_openReadWrite(), and MUD_openWrite().
| FILE *MUD_openInOut _ANSI_ARGS_ | ( | (char *inFile) | ) |
References MUD_openInput().
| FILE *MUD_openOutput _ANSI_ARGS_ | ( | (char *outFile) | ) |
References MUD_openInOut(), and MUD_openOutput().
| MUD_SEC *MUD_peekCore _ANSI_ARGS_ | ( | (FILE *fin) | ) |
References MUD_readFile().
| void *MUD_read _ANSI_ARGS_ | ( | (FILE *fin, MUD_IO_OPT io_opt) | ) |
References MUD_peekCore(), MUD_read(), and MUD_setSizes().
| int MUD_fseekFirst _ANSI_ARGS_ | ( | (FILE *fio) | ) |
References MUD_fseekFirst().
| MUD_SEC *fseekNext _ANSI_ARGS_ | ( | (FILE *fio, MUD_SEC_GRP *pMUD_parent, UINT32 secID, UINT32 instanceID) | ) |
References fseekNext().
| int MUD_fseek _ANSI_ARGS_ | ( | (FILE *fio,...) | ) |
References MUD_fseek().
| BOOL MUD_writeEnd _ANSI_ARGS_ | ( | (FILE *fout) | ) |
References MUD_writeEnd().
| BOOL MUD_writeGrpEnd _ANSI_ARGS_ | ( | (FILE *fout, MUD_SEC_GRP *pMUD_grp) | ) |
References MUD_writeGrpEnd().
| BOOL MUD_writeGrpMem _ANSI_ARGS_ | ( | (FILE *fout, MUD_SEC_GRP *pMUD_grp, void *pMUD) | ) |
References MUD_writeGrpMem().
| BOOL MUD_writeGrpStart _ANSI_ARGS_ | ( | (FILE *fout, MUD_SEC_GRP *pMUD_parentGrp, MUD_SEC_GRP *pMUD_grp, int numMems) | ) |
References MUD_writeGrpStart().
| BOOL MUD_write _ANSI_ARGS_ | ( | (FILE *fout, void *pMUD, MUD_IO_OPT io_opt) | ) |
References MUD_write().
| BOOL MUD_writeFile _ANSI_ARGS_ | ( | (FILE *fout, void *pMUD_head) | ) |
References MUD_writeFile().
| int MUD_closeWrite _ANSI_ARGS_ | ( | (int fd) | ) |
References MUD_closeRead(), and MUD_closeWrite().
| int MUD_setApparatus _ANSI_ARGS_ | ( | (int fd, char *apparatus) | ) |
| int MUD_getApparatus _ANSI_ARGS_ | ( | (int fd, char *apparatus, int strdim) | ) |
| int MUD_setArea _ANSI_ARGS_ | ( | (int fd, char *area) | ) |
| int MUD_getArea _ANSI_ARGS_ | ( | (int fd, char *area, int strdim) | ) |
| int MUD_setComment1 _ANSI_ARGS_ | ( | (int fd, char *comment1) | ) |
| int MUD_getComment1 _ANSI_ARGS_ | ( | (int fd, char *comment1, int strdim) | ) |
| int MUD_setComment2 _ANSI_ARGS_ | ( | (int fd, char *comment2) | ) |
| int MUD_getComment2 _ANSI_ARGS_ | ( | (int fd, char *comment2, int strdim) | ) |
| int MUD_setComment3 _ANSI_ARGS_ | ( | (int fd, char *comment3) | ) |
| int MUD_getComment3 _ANSI_ARGS_ | ( | (int fd, char *comment3, int strdim) | ) |
| int MUD_setDas _ANSI_ARGS_ | ( | (int fd, char *das) | ) |
| int MUD_getDas _ANSI_ARGS_ | ( | (int fd, char *das, int strdim) | ) |
| int MUD_setExperimenter _ANSI_ARGS_ | ( | (int fd, char *experimenter) | ) |
| int MUD_getExperimenter _ANSI_ARGS_ | ( | (int fd, char *experimenter, int strdim) | ) |
| int MUD_setField _ANSI_ARGS_ | ( | (int fd, char *field) | ) |
| int MUD_getField _ANSI_ARGS_ | ( | (int fd, char *field, int strdim) | ) |
| int MUD_setInsert _ANSI_ARGS_ | ( | (int fd, char *insert) | ) |
| int MUD_getInsert _ANSI_ARGS_ | ( | (int fd, char *insert, int strdim) | ) |
| int MUD_setLab _ANSI_ARGS_ | ( | (int fd, char *lab) | ) |
| int MUD_getLab _ANSI_ARGS_ | ( | (int fd, char *lab, int strdim) | ) |
| int MUD_setMethod _ANSI_ARGS_ | ( | (int fd, char *method) | ) |
| int MUD_getMethod _ANSI_ARGS_ | ( | (int fd, char *method, int strdim) | ) |
| int MUD_setOrient _ANSI_ARGS_ | ( | (int fd, char *orient) | ) |
| int MUD_getOrient _ANSI_ARGS_ | ( | (int fd, char *orient, int strdim) | ) |
| int MUD_closeWriteFile _ANSI_ARGS_ | ( | (int fd, char *outfile) | ) |
References MUD_closeWriteFile().
| int MUD_setSample _ANSI_ARGS_ | ( | (int fd, char *sample) | ) |
| int MUD_getSample _ANSI_ARGS_ | ( | (int fd, char *sample, int strdim) | ) |
| int MUD_setSubtitle _ANSI_ARGS_ | ( | (int fd, char *subtitle) | ) |
| int MUD_getSubtitle _ANSI_ARGS_ | ( | (int fd, char *subtitle, int strdim) | ) |
| int MUD_setTemperature _ANSI_ARGS_ | ( | (int fd, char *temperature) | ) |
| int MUD_getTemperature _ANSI_ARGS_ | ( | (int fd, char *temperature, int strdim) | ) |
| int MUD_setTitle _ANSI_ARGS_ | ( | (int fd, char *title) | ) |
| int MUD_getTitle _ANSI_ARGS_ | ( | (int fd, char *title, int strdim) | ) |
| int MUD_setCommentAuthor _ANSI_ARGS_ | ( | (int fd, int num, char *author) | ) |
| int MUD_getCommentAuthor _ANSI_ARGS_ | ( | (int fd, int num, char *author, int strdim) | ) |
| int MUD_setCommentBody _ANSI_ARGS_ | ( | (int fd, int num, char *body) | ) |
| int MUD_getCommentBody _ANSI_ARGS_ | ( | (int fd, int num, char *body, int strdim) | ) |
| int MUD_setIndVarDescription _ANSI_ARGS_ | ( | (int fd, int num, char *description) | ) |
| int MUD_getIndVarDescription _ANSI_ARGS_ | ( | (int fd, int num, char *description, int strdim) | ) |
| int MUD_setScalerLabel _ANSI_ARGS_ | ( | (int fd, int num, char *label) | ) |
References MUD_getIndVars(), MUD_setScalerCounts(), and MUD_setScalerLabel().
| int MUD_getScalerLabel _ANSI_ARGS_ | ( | (int fd, int num, char *label, int strdim) | ) |
References MUD_getScalerLabel().
| int MUD_setIndVarName _ANSI_ARGS_ | ( | (int fd, int num, char *name) | ) |
| int MUD_getIndVarName _ANSI_ARGS_ | ( | (int fd, int num, char *name, int strdim) | ) |
| int MUD_setHistTitle _ANSI_ARGS_ | ( | (int fd, int num, char *title) | ) |
| int MUD_getHistTitle _ANSI_ARGS_ | ( | (int fd, int num, char *title, int strdim) | ) |
| int MUD_setIndVarUnits _ANSI_ARGS_ | ( | (int fd, int num, char *units) | ) |
| int MUD_getIndVarUnits _ANSI_ARGS_ | ( | (int fd, int num, char *units, int strdim) | ) |
| int MUD_getIndVarHigh _ANSI_ARGS_ | ( | (int fd, int num, double *pHigh) | ) |
| int MUD_getIndVarLow _ANSI_ARGS_ | ( | (int fd, int num, double *pLow) | ) |
| int MUD_getIndVarMean _ANSI_ARGS_ | ( | (int fd, int num, double *pMean) | ) |
| int MUD_getIndVarSkewness _ANSI_ARGS_ | ( | (int fd, int num, double *pSkewness) | ) |
| int MUD_getIndVarStddev _ANSI_ARGS_ | ( | (int fd, int num, double *pStddev) | ) |
| int MUD_setIndVarHigh _ANSI_ARGS_ | ( | (int fd, int num, double high) | ) |
| int MUD_setIndVarLow _ANSI_ARGS_ | ( | (int fd, int num, double low) | ) |
| int MUD_setIndVarMean _ANSI_ARGS_ | ( | (int fd, int num, double mean) | ) |
| int MUD_setIndVarSkewness _ANSI_ARGS_ | ( | (int fd, int num, double skewness) | ) |
| int MUD_setIndVarStddev _ANSI_ARGS_ | ( | (int fd, int num, double stddev) | ) |
| int MUD_getHistSecondsPerBin _ANSI_ARGS_ | ( | (int fd, int num, REAL64 *pSecondsPerBin) | ) |
References MUD_getHistSecondsPerBin().
| int MUD_setHistSecondsPerBin _ANSI_ARGS_ | ( | (int fd, int num, REAL64 secondsPerBin) | ) |
References MUD_setHistSecondsPerBin().
| int MUD_getIndVarpTimeData _ANSI_ARGS_ | ( | (int fd, int num, UINT32 **ppTimeData) | ) |
References MUD_getHistpTimeData(), and MUD_setHists().
| int MUD_getHistBkgd1 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pBkgd1) | ) |
| int MUD_getHistBkgd2 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pBkgd2) | ) |
| int MUD_getHistBytesPerBin _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pBytesPerBin) | ) |
| int MUD_setScalerCounts _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pCounts) | ) |
References MUD_getScalerCounts(), and MUD_setScalers().
| int MUD_getIndVarDataType _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pDataType) | ) |
| int MUD_getIndVarElemSize _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pElemSize) | ) |
| int MUD_getHistFsPerBin _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pFsPerBin) | ) |
| int MUD_getHistGoodBin1 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pGoodBin1) | ) |
| int MUD_getHistGoodBin2 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pGoodBin2) | ) |
| int MUD_getIndVarHasTime _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pHasTime) | ) |
References MUD_getIndVarData(), MUD_getIndVarpTimeData(), MUD_getIndVarTimeData(), and MUD_setIndVars().
| int MUD_getCommentNext _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pNext) | ) |
| int MUD_getHistNumBins _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pNumBins) | ) |
| int MUD_getHistNumBytes _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pNumBytes) | ) |
| int MUD_getIndVarNumData _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pNumData) | ) |
| int MUD_getHistNumEvents _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pNumEvents) | ) |
| int MUD_getCommentPrev _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pPrev) | ) |
| int MUD_getHistT0_Bin _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pT0_bin) | ) |
| int MUD_getHistT0_Ps _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pT0_ps) | ) |
| int MUD_getCommentTime _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pTime) | ) |
| int MUD_setIndVarpTimeData _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pTimeData) | ) |
References MUD_getHistTimeData().
| int MUD_getHistType _ANSI_ARGS_ | ( | (int fd, int num, UINT32 *pType) | ) |
| int MUD_setHistBkgd1 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 bkgd1) | ) |
| int MUD_setHistBkgd2 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 bkgd2) | ) |
| int MUD_setHistBytesPerBin _ANSI_ARGS_ | ( | (int fd, int num, UINT32 bytesPerBin) | ) |
| int MUD_setIndVarDataType _ANSI_ARGS_ | ( | (int fd, int num, UINT32 dataType) | ) |
| int MUD_setIndVarElemSize _ANSI_ARGS_ | ( | (int fd, int num, UINT32 elemSize) | ) |
| int MUD_setHistFsPerBin _ANSI_ARGS_ | ( | (int fd, int num, UINT32 fsPerBin) | ) |
| int MUD_setHistGoodBin1 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 goodBin1) | ) |
| int MUD_setHistGoodBin2 _ANSI_ARGS_ | ( | (int fd, int num, UINT32 goodBin2) | ) |
| int MUD_setIndVarHasTime _ANSI_ARGS_ | ( | (int fd, int num, UINT32 hasTime) | ) |
References MUD_setIndVarData(), MUD_setIndVarpData(), MUD_setIndVarpTimeData(), and MUD_setIndVarTimeData().
| int MUD_setCommentNext _ANSI_ARGS_ | ( | (int fd, int num, UINT32 next) | ) |
| int MUD_setHistNumBins _ANSI_ARGS_ | ( | (int fd, int num, UINT32 numBins) | ) |
| int MUD_setHistNumBytes _ANSI_ARGS_ | ( | (int fd, int num, UINT32 numBytes) | ) |
| int MUD_setIndVarNumData _ANSI_ARGS_ | ( | (int fd, int num, UINT32 numData) | ) |
| int MUD_setHistNumEvents _ANSI_ARGS_ | ( | (int fd, int num, UINT32 numEvents) | ) |
References MUD_setHistData(), MUD_setHistpData(), MUD_setHistpTimeData(), and MUD_setHistTimeData().
| int MUD_setCommentPrev _ANSI_ARGS_ | ( | (int fd, int num, UINT32 prev) | ) |
| int MUD_setHistT0_Bin _ANSI_ARGS_ | ( | (int fd, int num, UINT32 t0_bin) | ) |
| int MUD_setHistT0_Ps _ANSI_ARGS_ | ( | (int fd, int num, UINT32 t0_ps) | ) |
| int MUD_setCommentTime _ANSI_ARGS_ | ( | (int fd, int num, UINT32 time) | ) |
| int MUD_setHistType _ANSI_ARGS_ | ( | (int fd, int num, UINT32 type) | ) |
| int MUD_getIndVarpData _ANSI_ARGS_ | ( | (int fd, int num, void **ppData) | ) |
| int MUD_setIndVarpData _ANSI_ARGS_ | ( | (int fd, int num, void *pData) | ) |
References MUD_getHistData().
| int MUD_getElapsedSec _ANSI_ARGS_ | ( | (int fd, UINT32 *pElapsedSec) | ) |
| int MUD_getExptNumber _ANSI_ARGS_ | ( | (int fd, UINT32 *pExptNumber) | ) |
| int MUD_getRunNumber _ANSI_ARGS_ | ( | (int fd, UINT32 *pRunNumber) | ) |
| int MUD_getRunDesc _ANSI_ARGS_ | ( | (int fd, UINT32 *pType) | ) |
References MUD_getRunDesc().
| int MUD_getIndVars _ANSI_ARGS_ | ( | (int fd, UINT32 *pType, UINT32 *pNum) | ) |
| int MUD_getTimeBegin _ANSI_ARGS_ | ( | (int fd, UINT32 *TimeBegin) | ) |
| int MUD_getTimeEnd _ANSI_ARGS_ | ( | (int fd, UINT32 *TimeEnd) | ) |
| int MUD_setElapsedSec _ANSI_ARGS_ | ( | (int fd, UINT32 elapsedSec) | ) |
| int MUD_setExptNumber _ANSI_ARGS_ | ( | (int fd, UINT32 exptNumber) | ) |
| int MUD_setRunNumber _ANSI_ARGS_ | ( | (int fd, UINT32 runNumber) | ) |
| int MUD_setTimeBegin _ANSI_ARGS_ | ( | (int fd, UINT32 timeBegin) | ) |
| int MUD_setTimeEnd _ANSI_ARGS_ | ( | (int fd, UINT32 timeEnd) | ) |
| int MUD_setRunDesc _ANSI_ARGS_ | ( | (int fd, UINT32 type) | ) |
References MUD_setRunDesc().
| int MUD_setIndVars _ANSI_ARGS_ | ( | (int fd, UINT32 type, UINT32 num) | ) |
References MUD_setComments().
| int MUD_unpack _ANSI_ARGS_ | ( | (int num, int inBinSize, void *inArray, int outBinSize, void *outArray) | ) |
References MUD_getScalers(), MUD_pack(), and MUD_unpack().
| int MUD_SEC_GEN_HIST_unpack _ANSI_ARGS_ | ( | (int num, int inBinSize, void *inHist, int outBinSize, void *outHist) | ) |
References MUD_SEC_GEN_HIST_pack(), and MUD_SEC_GEN_HIST_unpack().
| int MUD_INDEX_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_INDEX *pMUD) | ) |
References MUD_INDEX_proc().
| int MUD_SEC_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC *pMUD) | ) |
References MUD_CORE_proc().
| int MUD_SEC_CMT_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_CMT *pMUD) | ) |
References MUD_SEC_CMT_proc().
| int MUD_SEC_EOF_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_EOF *pMUD) | ) |
References MUD_SEC_EOF_proc().
| int MUD_SEC_FIXED_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_FIXED *pMUD) | ) |
References MUD_SEC_FIXED_proc().
| int MUD_SEC_GEN_ARRAY_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_ARRAY *pMUD) | ) |
References MUD_SEC_GEN_ARRAY_proc().
| int MUD_SEC_GEN_HIST_DAT_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_HIST_DAT *pMUD) | ) |
References MUD_SEC_GEN_HIST_DAT_proc().
| int MUD_SEC_GEN_HIST_HDR_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_HIST_HDR *pMUD) | ) |
References MUD_SEC_GEN_HIST_HDR_proc().
| int MUD_SEC_GEN_IND_VAR_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_IND_VAR *pMUD) | ) |
References MUD_SEC_GEN_IND_VAR_proc().
| int MUD_SEC_GEN_RUN_DESC_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_RUN_DESC *pMUD) | ) |
References MUD_SEC_GEN_RUN_DESC_proc().
| int MUD_SEC_GEN_SCALER_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_GEN_SCALER *pMUD) | ) |
References MUD_SEC_GEN_SCALER_proc().
| int MUD_SEC_GRP_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_GRP *pMUD) | ) |
References MUD_SEC_GRP_proc().
| int MUD_SEC_TRI_TI_RUN_DESC_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_TRI_TI_RUN_DESC *pMUD) | ) |
References MUD_SEC_TRI_TI_RUN_DESC_proc().
| int MUD_SEC_UNKNOWN_proc _ANSI_ARGS_ | ( | (MUD_OPT op, BUF *pBuf, MUD_SEC_UNKNOWN *pMUD) | ) |
References MUD_SEC_UNKNOWN_proc().
| void MUD_assignCore _ANSI_ARGS_ | ( | (MUD_SEC *pMUD1, MUD_SEC *pMUD2) | ) |
References MUD_assignCore().
| void MUD_addToGroup _ANSI_ARGS_ | ( | (MUD_SEC_GRP *pMUD_grp, void *pMUD) | ) |
References addIndex().
| void GMF_TIME _ANSI_ARGS_ | ( | (TIME *out) | ) |
References MUD_new(), and MUD_SEC_proc().
| void MUD_add _ANSI_ARGS_ | ( | (void **ppMUD_head, void *pMUD_new) | ) |
References MUD_add(), MUD_addToGroup(), and MUD_totSize().
| void bencode_8 _ANSI_ARGS_ | ( | (void *b, void *p) | ) |
References bdecode_2(), bdecode_4(), bdecode_8(), bencode_2(), bencode_4(), bencode_8(), decode_str(), and encode_str().
| int MUD_totSize _ANSI_ARGS_ | ( | (void *pMUD) | ) |
References MUD_free().
| void MUD_heads _ANSI_ARGS_ | ( | (void *pMUD, MUD_IO_OPT io_opt) | ) |
References MUD_heads(), and MUD_show().
| void *MUD_search _ANSI_ARGS_ | ( | (void *pMUD_head,...) | ) |
References MUD_search().