| /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
| D | Threads.h | 19 #define Thread_Construct(p) *(p) = NULL argument 20 #define Thread_WasCreated(p) (*(p) != NULL) argument 21 #define Thread_Close(p) HandlePtr_Close(p) argument 22 #define Thread_Wait(p) Handle_WaitObject(*(p)) argument 40 #define Event_Construct(p) *(p) = NULL argument 41 #define Event_IsCreated(p) (*(p) != NULL) argument 42 #define Event_Close(p) HandlePtr_Close(p) argument 43 #define Event_Wait(p) Handle_WaitObject(*(p)) argument 52 #define Semaphore_Construct(p) (*p) = NULL argument 53 #define Semaphore_Close(p) HandlePtr_Close(p) argument [all …]
|
| D | Threads.c | 21 WRes HandlePtr_Close(HANDLE *p) in HandlePtr_Close() 32 WRes Thread_Create(CThread *p, THREAD_FUNC_TYPE func, LPVOID param) in Thread_Create() 52 WRes Event_Create(CEvent *p, BOOL manualReset, int signaled) in Event_Create() 58 WRes Event_Set(CEvent *p) { return BOOLToWRes(SetEvent(*p)); } in Event_Set() 59 WRes Event_Reset(CEvent *p) { return BOOLToWRes(ResetEvent(*p)); } in Event_Reset() 61 WRes ManualResetEvent_Create(CManualResetEvent *p, int signaled) { return Event_Create(p, TRUE, sig… in ManualResetEvent_Create() 62 WRes AutoResetEvent_Create(CAutoResetEvent *p, int signaled) { return Event_Create(p, FALSE, signal… in AutoResetEvent_Create() 63 WRes ManualResetEvent_CreateNotSignaled(CManualResetEvent *p) { return ManualResetEvent_Create(p, 0… in ManualResetEvent_CreateNotSignaled() 64 WRes AutoResetEvent_CreateNotSignaled(CAutoResetEvent *p) { return AutoResetEvent_Create(p, 0); } in AutoResetEvent_CreateNotSignaled() 67 WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount) in Semaphore_Create() [all …]
|
| D | 7zFile.c | 30 void File_Construct(CSzFile *p) in File_Construct() 40 static WRes File_Open(CSzFile *p, const char *name, int writeMode) in File_Open() 60 WRes InFile_Open(CSzFile *p, const char *name) { return File_Open(p, name, 0); } in InFile_Open() 61 WRes OutFile_Open(CSzFile *p, const char *name) { return File_Open(p, name, 1); } in OutFile_Open() 65 static WRes File_OpenW(CSzFile *p, const WCHAR *name, int writeMode) in File_OpenW() 74 WRes InFile_OpenW(CSzFile *p, const WCHAR *name) { return File_OpenW(p, name, 0); } in InFile_OpenW() 75 WRes OutFile_OpenW(CSzFile *p, const WCHAR *name) { return File_OpenW(p, name, 1); } in OutFile_OpenW() 78 WRes File_Close(CSzFile *p) in File_Close() 99 WRes File_Read(CSzFile *p, void *data, size_t *size) in File_Read() 134 WRes File_Write(CSzFile *p, const void *data, size_t *size) in File_Write() [all …]
|
| D | LzFindMt.c | 10 static void MtSync_Construct(CMtSync *p) in MtSync_Construct() 23 static void MtSync_GetNextBlock(CMtSync *p) in MtSync_GetNextBlock() 51 static void MtSync_StopWriting(CMtSync *p) in MtSync_StopWriting() 74 static void MtSync_Destruct(CMtSync *p) in MtSync_Destruct() 102 static SRes MtSync_Create2(CMtSync *p, THREAD_FUNC_TYPE startAddress, void *obj, UInt32 numBlocks) in MtSync_Create2() 124 static SRes MtSync_Create(CMtSync *p, THREAD_FUNC_TYPE startAddress, void *obj, UInt32 numBlocks) in MtSync_Create() 132 void MtSync_Init(CMtSync *p) { p->needStart = True; } in MtSync_Init() 152 CMtSync *p = &mt->hashSync; in HashThreadFunc() local 220 static void MatchFinderMt_GetNextBlock_Hash(CMatchFinderMt *p) in MatchFinderMt_GetNextBlock_Hash() 313 static void BtGetMatches(CMatchFinderMt *p, UInt32 *distances) in BtGetMatches() [all …]
|
| D | LzFind.c | 19 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc) in LzInWindow_Free() 30 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create() 47 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p) { return p->buffer; } in MatchFinder_GetPointerToCurrentPos() 49 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes() 51 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets() 58 static void MatchFinder_ReadBlock(CMatchFinder *p) in MatchFinder_ReadBlock() 98 void MatchFinder_MoveBlock(CMatchFinder *p) in MatchFinder_MoveBlock() 106 int MatchFinder_NeedMove(CMatchFinder *p) in MatchFinder_NeedMove() 114 void MatchFinder_ReadIfRequired(CMatchFinder *p) in MatchFinder_ReadIfRequired() 122 static void MatchFinder_CheckAndMoveAndRead(CMatchFinder *p) in MatchFinder_CheckAndMoveAndRead() [all …]
|
| D | CpuArch.h | 104 #define GetUi16(p) (*(const UInt16 *)(const void *)(p)) argument 105 #define GetUi32(p) (*(const UInt32 *)(const void *)(p)) argument 106 #define GetUi64(p) (*(const UInt64 *)(const void *)(p)) argument 108 #define SetUi16(p, v) { *(UInt16 *)(p) = (v); } argument 109 #define SetUi32(p, v) { *(UInt32 *)(p) = (v); } argument 110 #define SetUi64(p, v) { *(UInt64 *)(p) = (v); } argument 151 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p)) argument 152 #define GetBe64(p) _byteswap_uint64(*(const UInt64 *)(const Byte *)(p)) argument 154 #define SetBe32(p, v) (*(UInt32 *)(void *)(p)) = _byteswap_ulong(v) argument 182 #define GetBe16(p) ( (UInt16) ( \ argument
|
| D | 7zStream.c | 74 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Look_Lookahead() local 92 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Look_Exact() local 110 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Skip() local 117 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Read() local 131 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Seek() local 136 void LookToRead_CreateVTable(CLookToRead *p, int lookahead) in LookToRead_CreateVTable() 146 void LookToRead_Init(CLookToRead *p) in LookToRead_Init() 153 CSecToLook *p = (CSecToLook *)pp; in SecToLook_Read() local 157 void SecToLook_CreateVTable(CSecToLook *p) in SecToLook_CreateVTable() 164 CSecToRead *p = (CSecToRead *)pp; in SecToRead_Read() local [all …]
|
| /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
| D | misc.c | 90 char **p; local 122 Expr *p = (Expr *) calloc(1, sizeof(Expr)); local 148 TermEntry *p; local 220 TermEntry *p; local 237 TermEntry *p; local 272 ListNode *p; in RemapForcedTokens() local 355 RemapForcedTokensInSyntaxDiagram(Node *p) in RemapForcedTokensInSyntaxDiagram() 410 TermEntry *p; local 435 TermEntry *p; local 458 TermEntry *p; local [all …]
|
| D | pred.c | 78 char *p = a->action; local 96 char *p = a->action; local 159 Junction *p = alt; local 323 Junction *p = (Junction *) alt; local 380 ActionNode *p = (ActionNode *) alt; local 485 RuleRefNode *p = (RuleRefNode *) alt; local 577 Predicate *p; local 591 Predicate *p = (Predicate *) calloc(1,sizeof(Predicate)); /* MR10 */ in new_pred() local 603 complete_context_sets( RuleRefNode *p, Predicate *a ) in complete_context_sets() 650 complete_context_trees( RuleRefNode *p, Predicate *a ) in complete_context_trees() [all …]
|
| D | dumpnode.c | 35 int isEndRule(Node * p) in isEndRule() 50 void dumppred1(int depth,Predicate *p) in dumppred1() 113 void dumppred(Predicate *p) in dumppred() 125 void dumppredtree(Predicate *p) in dumppredtree() 136 void dumppredexpr(Predicate *p) in dumppredexpr() 156 void d(Node * p) in d() 261 Node * dp1(Node * p) in dp1() 279 Node * dp2(Node * p) in dp2() 297 Node * dn(Node * p) in dn() 320 void df(Node * p) in df() [all …]
|
| D | lex.c | 52 ListNode *p; in genLexDescr() local 187 ListNode *p; local 231 char *p; local 293 TermEntry *p; in genDefFile() local 388 GenRuleFuncRedefs( FILE *f, Junction *p ) in GenRuleFuncRedefs() 415 char **p; local 436 char **p; local 475 GenRulePrototypes( FILE *f, Junction *p ) in GenRulePrototypes() 557 Junction *p = q; local 682 char *p; local [all …]
|
| /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
| D | LzFind.c | 21 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc) in LzInWindow_Free() 32 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create() 49 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p) { return p->buffer; } in MatchFinder_GetPointerToCurrentPos() 51 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes() 53 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets() 60 static void MatchFinder_ReadBlock(CMatchFinder *p) in MatchFinder_ReadBlock() 100 void MatchFinder_MoveBlock(CMatchFinder *p) in MatchFinder_MoveBlock() 108 int MatchFinder_NeedMove(CMatchFinder *p) in MatchFinder_NeedMove() 116 void MatchFinder_ReadIfRequired(CMatchFinder *p) in MatchFinder_ReadIfRequired() 124 static void MatchFinder_CheckAndMoveAndRead(CMatchFinder *p) in MatchFinder_CheckAndMoveAndRead() [all …]
|
| D | CpuArch.h | 104 #define GetUi16(p) (*(const UInt16 *)(const void *)(p)) argument 105 #define GetUi32(p) (*(const UInt32 *)(const void *)(p)) argument 106 #define GetUi64(p) (*(const UInt64 *)(const void *)(p)) argument 108 #define SetUi16(p, v) { *(UInt16 *)(p) = (v); } argument 109 #define SetUi32(p, v) { *(UInt32 *)(p) = (v); } argument 110 #define SetUi64(p, v) { *(UInt64 *)(p) = (v); } argument 151 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p)) argument 152 #define GetBe64(p) _byteswap_uint64(*(const UInt64 *)(const Byte *)(p)) argument 154 #define SetBe32(p, v) (*(UInt32 *)(void *)(p)) = _byteswap_ulong(v) argument 182 #define GetBe16(p) ( (UInt16) ( \ argument
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
| D | LzFind.c | 21 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc) in LzInWindow_Free() 32 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create() 49 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p) { return p->buffer; } in MatchFinder_GetPointerToCurrentPos() 51 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes() 53 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets() 60 static void MatchFinder_ReadBlock(CMatchFinder *p) in MatchFinder_ReadBlock() 100 void MatchFinder_MoveBlock(CMatchFinder *p) in MatchFinder_MoveBlock() 108 int MatchFinder_NeedMove(CMatchFinder *p) in MatchFinder_NeedMove() 116 void MatchFinder_ReadIfRequired(CMatchFinder *p) in MatchFinder_ReadIfRequired() 124 static void MatchFinder_CheckAndMoveAndRead(CMatchFinder *p) in MatchFinder_CheckAndMoveAndRead() [all …]
|
| D | CpuArch.h | 104 #define GetUi16(p) (*(const UInt16 *)(const void *)(p)) argument 105 #define GetUi32(p) (*(const UInt32 *)(const void *)(p)) argument 106 #define GetUi64(p) (*(const UInt64 *)(const void *)(p)) argument 108 #define SetUi16(p, v) { *(UInt16 *)(p) = (v); } argument 109 #define SetUi32(p, v) { *(UInt32 *)(p) = (v); } argument 110 #define SetUi64(p, v) { *(UInt64 *)(p) = (v); } argument 151 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p)) argument 152 #define GetBe64(p) _byteswap_uint64(*(const UInt64 *)(const Byte *)(p)) argument 154 #define SetBe32(p, v) (*(UInt32 *)(void *)(p)) = _byteswap_ulong(v) argument 182 #define GetBe16(p) ( (UInt16) ( \ argument
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| D | test_sys_setprofile.py | 105 def f(p): argument 113 def f(p): argument 121 def f(p): argument 130 def f(p): argument 139 def f(p): argument 150 def f(p): argument 152 def g(p): argument 169 def f(p): argument 171 def g(p): argument 184 def f(p): argument [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/ |
| D | xmltok.c | 72 #define UTF8_GET_NAMING(pages, p, n) \ argument 89 #define UTF8_INVALID2(p) \ argument 92 #define UTF8_INVALID3(p) \ argument 109 #define UTF8_INVALID4(p) \ argument 123 isNever(const ENCODING *enc, const char *p) in isNever() 129 utf8_isName2(const ENCODING *enc, const char *p) in utf8_isName2() 135 utf8_isName3(const ENCODING *enc, const char *p) in utf8_isName3() 143 utf8_isNmstrt2(const ENCODING *enc, const char *p) in utf8_isNmstrt2() 149 utf8_isNmstrt3(const ENCODING *enc, const char *p) in utf8_isNmstrt3() 157 utf8_isInvalid2(const ENCODING *enc, const char *p) in utf8_isInvalid2() [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
| D | _struct.c | 195 get_long(PyObject *v, long *p) in get_long() 214 get_ulong(PyObject *v, unsigned long *p) in get_ulong() 235 get_longlong(PyObject *v, PY_LONG_LONG *p) in get_longlong() 254 get_ulonglong(PyObject *v, unsigned PY_LONG_LONG *p) in get_ulonglong() 275 unpack_float(const char *p, /* start of 4-byte string */ in unpack_float() 287 unpack_double(const char *p, /* start of 8-byte string */ in unpack_double() 350 nu_char(const char *p, const formatdef *f) in nu_char() 356 nu_byte(const char *p, const formatdef *f) in nu_byte() 362 nu_ubyte(const char *p, const formatdef *f) in nu_ubyte() 368 nu_short(const char *p, const formatdef *f) in nu_short() [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
| D | _struct.c | 195 get_long(PyObject *v, long *p) in get_long() 214 get_ulong(PyObject *v, unsigned long *p) in get_ulong() 235 get_longlong(PyObject *v, PY_LONG_LONG *p) in get_longlong() 254 get_ulonglong(PyObject *v, unsigned PY_LONG_LONG *p) in get_ulonglong() 275 unpack_float(const char *p, /* start of 4-byte string */ in unpack_float() 287 unpack_double(const char *p, /* start of 8-byte string */ in unpack_double() 350 nu_char(const char *p, const formatdef *f) in nu_char() 356 nu_byte(const char *p, const formatdef *f) in nu_byte() 362 nu_ubyte(const char *p, const formatdef *f) in nu_ubyte() 368 nu_short(const char *p, const formatdef *f) in nu_short() [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/ |
| D | xmltok.c | 74 #define UTF8_GET_NAMING(pages, p, n) \ argument 91 #define UTF8_INVALID2(p) \ argument 94 #define UTF8_INVALID3(p) \ argument 111 #define UTF8_INVALID4(p) \ argument 125 isNever(const ENCODING *enc, const char *p) in isNever() 131 utf8_isName2(const ENCODING *enc, const char *p) in utf8_isName2() 137 utf8_isName3(const ENCODING *enc, const char *p) in utf8_isName3() 145 utf8_isNmstrt2(const ENCODING *enc, const char *p) in utf8_isNmstrt2() 151 utf8_isNmstrt3(const ENCODING *enc, const char *p) in utf8_isNmstrt3() 159 utf8_isInvalid2(const ENCODING *enc, const char *p) in utf8_isInvalid2() [all …]
|
| /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/sym/ |
| D | sym.c | 172 register char *p=key; local 194 register char *p=key; local 217 void zzs_del(Sym *p) in zzs_del() 248 Sym *p = zzs_get(key); local 278 register Sym *p; local 296 register Sym **p; in zzs_stat() local 351 Sym *p; local 372 Sym *p = zzs_new(text); local
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/ |
| D | utf16_le.c | 58 utf16le_mbc_enc_len(const UChar* p) in utf16le_mbc_enc_len() 64 utf16le_is_mbc_newline(const UChar* p, const UChar* end) in utf16le_is_mbc_newline() 84 utf16le_mbc_to_code(const UChar* p, const UChar* end ARG_UNUSED) in utf16le_mbc_to_code() 104 UChar* p = buf; in utf16le_code_to_mbc() local 129 const UChar* p = *pp; in utf16le_mbc_case_fold() local 203 const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]) in utf16le_get_case_fold_codes_by_str()
|
| /device/google/bonito/json-c/ |
| D | printbuf.c | 35 struct printbuf *p; in printbuf_new() local 57 static int printbuf_extend(struct printbuf *p, int min_size) in printbuf_extend() 80 int printbuf_memappend(struct printbuf *p, const char *buf, int size) in printbuf_memappend() 153 int sprintbuf(struct printbuf *p, const char *msg, ...) in sprintbuf() 181 void printbuf_reset(struct printbuf *p) in printbuf_reset() 187 void printbuf_free(struct printbuf *p) in printbuf_free()
|
| /device/google/crosshatch/json-c/ |
| D | printbuf.c | 35 struct printbuf *p; in printbuf_new() local 57 static int printbuf_extend(struct printbuf *p, int min_size) in printbuf_extend() 80 int printbuf_memappend(struct printbuf *p, const char *buf, int size) in printbuf_memappend() 153 int sprintbuf(struct printbuf *p, const char *msg, ...) in sprintbuf() 181 void printbuf_reset(struct printbuf *p) in printbuf_reset() 187 void printbuf_free(struct printbuf *p) in printbuf_free()
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
| D | getargs.c | 373 char *p = buf; in seterror() local 610 char *p = va_arg(*p_va, char *); in convertsimple() local 634 char *p = va_arg(*p_va, char *); in convertsimple() local 647 short *p = va_arg(*p_va, short *); in convertsimple() local 671 unsigned short *p = va_arg(*p_va, unsigned short *); in convertsimple() local 684 int *p = va_arg(*p_va, int *); in convertsimple() local 708 unsigned int *p = va_arg(*p_va, unsigned int *); in convertsimple() local 723 Py_ssize_t *p = va_arg(*p_va, Py_ssize_t *); in convertsimple() local 736 long *p = va_arg(*p_va, long *); in convertsimple() local 749 unsigned long *p = va_arg(*p_va, unsigned long *); in convertsimple() local [all …]
|