/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | cdefs_aout.h | 16 #define __indr_reference(sym,alias) /* nada, since we do weak refs */ argument 21 #define __strong_alias(alias,sym) \ argument 23 _C_LABEL_STRING(#alias) " = " _C_LABEL_STRING(#sym)); 24 #define __weak_alias(alias,sym) \ argument 26 _C_LABEL_STRING(#alias) " = " _C_LABEL_STRING(#sym)); 29 #define __weak_extern(sym) \ argument 30 __asm(".weak " _C_LABEL_STRING(#sym)); 33 #define __weak_reference(sym) __attribute__((__weakref__)) argument 35 #define __weak_reference(sym) ; __asm(".weak " _C_LABEL_STRING(#sym)) argument 38 #define __warn_references(sym,msg) \ argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | inftrees.c | 41 unsigned sym; /* index of code symbols */ local 109 for (sym = 0; sym < codes; sym++) 110 count[lens[sym]]++; 146 for (sym = 0; sym < codes; sym++) 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; 201 sym = 0; /* starting code symbol */ 219 if ((int)(work[sym]) < end) { 221 here.val = work[sym]; 223 else if ((int)(work[sym]) > end) { 224 here.op = (unsigned char)(extra[work[sym]]); [all …]
|
D | infback.c | 92 unsigned sym, bits; local 96 sym = 0; 97 while (sym < 144) state->lens[sym++] = 8; 98 while (sym < 256) state->lens[sym++] = 9; 99 while (sym < 280) state->lens[sym++] = 7; 100 while (sym < 288) state->lens[sym++] = 8; 107 sym = 0; 108 while (sym < 32) state->lens[sym++] = 5;
|
D | inflate.c | 271 unsigned sym, bits; local 275 sym = 0; 276 while (sym < 144) state->lens[sym++] = 8; 277 while (sym < 256) state->lens[sym++] = 9; 278 while (sym < 280) state->lens[sym++] = 7; 279 while (sym < 288) state->lens[sym++] = 8; 286 sym = 0; 287 while (sym < 32) state->lens[sym++] = 5;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | inftrees.c | 41 unsigned sym; /* index of code symbols */ local 109 for (sym = 0; sym < codes; sym++) 110 count[lens[sym]]++; 146 for (sym = 0; sym < codes; sym++) 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; 202 sym = 0; /* starting code symbol */ 219 if ((int)(work[sym]) < end) { 221 this.val = work[sym]; 223 else if ((int)(work[sym]) > end) { 224 this.op = (unsigned char)(extra[work[sym]]); [all …]
|
D | infback.c | 83 unsigned sym, bits; local 87 sym = 0; 88 while (sym < 144) state->lens[sym++] = 8; 89 while (sym < 256) state->lens[sym++] = 9; 90 while (sym < 280) state->lens[sym++] = 7; 91 while (sym < 288) state->lens[sym++] = 8; 98 sym = 0; 99 while (sym < 32) state->lens[sym++] = 5;
|
D | inflate.c | 215 unsigned sym, bits; local 219 sym = 0; 220 while (sym < 144) state->lens[sym++] = 8; 221 while (sym < 256) state->lens[sym++] = 9; 222 while (sym < 280) state->lens[sym++] = 7; 223 while (sym < 288) state->lens[sym++] = 8; 230 sym = 0; 231 while (sym < 32) state->lens[sym++] = 5;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/ |
D | firstsets.c | 35 int *sym; in calcfirstset() local 62 sym = (int *)PyObject_MALLOC(sizeof(int)); in calcfirstset() 63 if (sym == NULL) in calcfirstset() 66 sym[0] = findlabel(&g->g_ll, d->d_type, (char *)NULL); in calcfirstset() 72 if (sym[j] == a->a_lbl) in calcfirstset() 76 sym = (int *)PyObject_REALLOC(sym, in calcfirstset() 78 if (sym == NULL) in calcfirstset() 81 sym[nsyms++] = a->a_lbl; in calcfirstset() 112 PyObject_FREE(sym); in calcfirstset()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | firstsets.c | 35 int *sym; in calcfirstset() local 62 sym = (int *)PyObject_MALLOC(sizeof(int)); in calcfirstset() 63 if (sym == NULL) in calcfirstset() 66 sym[0] = findlabel(&g->g_ll, d->d_type, (char *)NULL); in calcfirstset() 72 if (sym[j] == a->a_lbl) in calcfirstset() 76 sym = (int *)PyObject_REALLOC(sym, in calcfirstset() 78 if (sym == NULL) in calcfirstset() 81 sym[nsyms++] = a->a_lbl; in calcfirstset() 112 PyObject_FREE(sym); in calcfirstset()
|
D | spark.py | 142 state, sym = k 144 self.goto(state, sym) 227 for sym in rhs: 228 if not self.rules.has_key(sym): 238 for sym in rhs: 239 if not self.nullable[sym]: 270 sym = rhs[i] 271 if not self.rules.has_key(sym) or \ 272 not self.nullable[sym]: 278 newrhs[i] = self._NULLABLE+sym [all …]
|
/device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/ |
D | asm.h | 110 #define WEAK_ALIAS(alias,sym) \ argument 112 alias = sym 118 #define STRONG_ALIAS(alias,sym) \ argument 120 alias = sym 123 #define WARN_REFERENCES(sym,msg) \ argument 125 .stabs __STRING(_C_LABEL(sym)) ## ,1,0,0,0 127 #define WARN_REFERENCES(sym,msg) \ argument 129 .stabs __STRING(sym),1,0,0,0 131 #define WARN_REFERENCES(sym,msg) \ argument 133 .stabs __STRING(_/**/sym),1,0,0,0
|
/device/linaro/bootloader/edk2/StdLib/Include/Ia32/machine/ |
D | asm.h | 181 #define WEAK_ALIAS(alias,sym) \ argument 183 alias = sym 188 #define STRONG_ALIAS(alias,sym) \ argument 190 alias = sym 193 #define WARN_REFERENCES(sym,msg) \ argument 195 .stabs __STRING(_C_LABEL(sym)) ## ,1,0,0,0 197 #define WARN_REFERENCES(sym,msg) \ argument 199 .stabs __STRING(sym),1,0,0,0 201 #define WARN_REFERENCES(sym,msg) \ argument 203 .stabs __STRING(_/**/sym),1,0,0,0
|
/device/linaro/bootloader/edk2/StdLib/Include/X64/machine/ |
D | asm.h | 102 #define WEAK_ALIAS(alias,sym) \ argument 104 alias = sym 109 #define STRONG_ALIAS(alias,sym) \ argument 111 alias = sym 115 #define WARN_REFERENCES(sym,msg) \ argument 117 .stabs __STRING(_C_LABEL(sym)) ## ,1,0,0,0 119 #define WARN_REFERENCES(sym,msg) \ argument 121 .stabs __STRING(sym),1,0,0,0
|
/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/ |
D | cdefs.h | 456 #define __strong_reference(sym,aliassym) \ argument 457 extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym))) 460 #define __weak_reference(sym,alias) \ argument 462 __asm__(".equ " #alias ", " #sym) 463 #define __warn_references(sym,msg) \ argument 464 __asm__(".section .gnu.warning." #sym); \ 467 #define __sym_compat(sym,impl,verid) \ argument 468 __asm__(".symver " #impl ", " #sym "@" #verid) 469 #define __sym_default(sym,impl,verid) \ argument 470 __asm__(".symver " #impl ", " #sym "@@" #verid) [all …]
|
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/ |
D | asm.h | 176 #define WEAK_ALIAS(alias,sym) \ argument 178 alias = sym 183 #define STRONG_ALIAS(alias,sym) \ argument 185 alias = sym
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmShellCmdRunAxf/ |
D | elf32.h | 152 #define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type)) argument 179 #define ELF32_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
|
D | elf64.h | 160 #define ELF64_R_INFO(sym, type) (((sym) << 32) + ((type) & 0xffffffffL)) argument 185 #define ELF64_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/ |
D | elf32.h | 152 #define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type)) argument 179 #define ELF32_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
|
D | elf64.h | 160 #define ELF64_R_INFO(sym, type) (((sym) << 32) + ((type) & 0xffffffffL)) argument 185 #define ELF64_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | loadlib.c | 113 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym); 141 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() argument 142 lua_CFunction f = (lua_CFunction)dlsym(lib, sym); in ll_sym() 206 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() argument 207 lua_CFunction f = (lua_CFunction)GetProcAddress((HMODULE)lib, sym); in ll_sym() 241 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() argument 242 (void)(lib); (void)(sym); /* not used */ in ll_sym() 286 static int ll_loadfunc (lua_State *L, const char *path, const char *sym) { in ll_loadfunc() argument 289 reg = ll_load(L, path, *sym == '*'); in ll_loadfunc() 293 if (*sym == '*') { /* loading only library (no function)? */ in ll_loadfunc() [all …]
|
/device/google/contexthub/util/nanoapp_postprocess/ |
D | postprocess.c | 307 static uint8_t fixupAddress(uint32_t *addr, struct SymtabEntry *sym, bool debug) in fixupAddress() argument 312 (*addr) += sym->addr; in fixupAddress() 344 struct SymtabEntry *sym = &app->symtab[symIdx]; in relocDiag() local 345 ERR(" addr: %" PRIu32, sym->addr); in relocDiag() 352 struct SymtabEntry *sym, struct NanoRelocEntry *nanoReloc) in fixupReloc() argument 380 type = fixupAddress(addr, sym, app->debug); in fixupReloc() 384 if (sym->addr) { in fixupReloc() 388 type = fixupAddress(addr, sym, app->debug); in fixupReloc() 484 struct SymtabEntry *sym = &app.symtab[whichSym]; in handleApp() local 506 i, reloc->where, reloc->info & 0xff, whichSym, sym->addr, seg); in handleApp() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/ |
D | log.py | 187 sym = tree[0] 190 if sym == funcdef: 192 elif sym == lambdef:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | symtable.py | 101 sym = self._symbols.get(name) 102 if sym is None: 105 sym = self._symbols[name] = Symbol(name, flags, namespaces) 106 return sym
|
/device/google/dragon/sepolicy/ |
D | init.te | 2 # set attributes on /sys/class/gpio sym link
|
/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/ |
D | Tpm2Session.c | 122 WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (Symmetric->keyBits.sym)); in Tpm2StartAuthSession() 124 WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (Symmetric->mode.sym)); in Tpm2StartAuthSession()
|