| /src/external/gpl3/gcc.old/dist/libobjc/ |
| sendmsg.c | 164 (class->class_pointer->dtable, (size_t) selector_resolveClassMethod->sel_id); 169 We already know the dtable is installed. */ 174 return sarray_get_safe (class->class_pointer->dtable, (size_t) sel->sel_id); 199 resolveMethodIMP = sarray_get_safe (class->class_pointer->dtable, 203 /* Try again after installing the dtable. */ 204 if (class->class_pointer->dtable == __objc_uninstalled_dtable) 207 if (class->class_pointer->dtable == __objc_uninstalled_dtable) 211 resolveMethodIMP = sarray_get_safe (class->class_pointer->dtable, 218 again. We already know the dtable is installed. */ 223 return sarray_get_safe (class->dtable, (size_t) sel->sel_id); 364 struct sarray *dtable; local 396 struct sarray *dtable; local 1043 struct sarray *dtable; local 1111 struct sarray *dtable = 0; local 1131 struct sarray *dtable; local [all...] |
| class.c | 830 sarray_at_put_safe (class->dtable, 837 sarray_at_put_safe (class->dtable,
|
| /src/external/gpl3/gcc/dist/libobjc/ |
| sendmsg.c | 164 (class->class_pointer->dtable, (size_t) selector_resolveClassMethod->sel_id); 169 We already know the dtable is installed. */ 174 return sarray_get_safe (class->class_pointer->dtable, (size_t) sel->sel_id); 199 resolveMethodIMP = sarray_get_safe (class->class_pointer->dtable, 203 /* Try again after installing the dtable. */ 204 if (class->class_pointer->dtable == __objc_uninstalled_dtable) 207 if (class->class_pointer->dtable == __objc_uninstalled_dtable) 211 resolveMethodIMP = sarray_get_safe (class->class_pointer->dtable, 218 again. We already know the dtable is installed. */ 223 return sarray_get_safe (class->dtable, (size_t) sel->sel_id); 364 struct sarray *dtable; local 396 struct sarray *dtable; local 1043 struct sarray *dtable; local 1111 struct sarray *dtable = 0; local 1131 struct sarray *dtable; local [all...] |
| class.c | 830 sarray_at_put_safe (class->dtable, 837 sarray_at_put_safe (class->dtable,
|
| /src/external/bsd/zstd/dist/doc/educational_decoder/ |
| zstd_decompress.c | 168 static inline u8 HUF_decode_symbol(const HUF_dtable *const dtable, 172 static inline void HUF_init_state(const HUF_dtable *const dtable, 178 static size_t HUF_decompress_1stream(const HUF_dtable *const dtable, 183 static size_t HUF_decompress_4stream(const HUF_dtable *const dtable, 196 static void HUF_free_dtable(HUF_dtable *const dtable); 217 static inline u8 FSE_peek_symbol(const FSE_dtable *const dtable, 221 static inline void FSE_update_state(const FSE_dtable *const dtable, 226 static inline u8 FSE_decode_symbol(const FSE_dtable *const dtable, 231 static inline void FSE_init_state(const FSE_dtable *const dtable, 238 static size_t FSE_decompress_interleaved2(const FSE_dtable *const dtable, 919 FSE_dtable dtable; local [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| base64.c | 92 unsigned char dtable[256], *out, *pos, block[4], tmp; local 97 os_memset(dtable, 0x80, 256); 99 dtable[(unsigned char) table[i]] = (unsigned char) i; 100 dtable['='] = 0; 104 if (dtable[(unsigned char) src[i]] != 0x80) 125 tmp = dtable[val];
|
| /src/external/bsd/wpa/dist/src/common/ |
| sae_pk.c | 119 u8 dtable[256]; local 123 os_memset(dtable, 0x80, 256); 125 dtable[(u8) sae_pk_base32_table[i]] = i; 130 c = dtable[(u8) str[j]]; 147 u8 dtable[256]; local 149 os_memset(dtable, 0x80, 256); 151 dtable[(u8) sae_pk_base32_table[i]] = i; 169 if (dtable[(u8) pw[pos]] == 0x80) { 184 sec_1b = dtable[(u8) pw[0]] & BIT(4); 186 if (sec_1b != (dtable[(u8) pw[i]] & BIT(4))) 252 u8 dtable[256], *out, *pos, tmp; local [all...] |
| /src/external/bsd/zstd/dist/lib/common/ |
| fse_decompress.c | 253 FSE_DTable* const dtable = (FSE_DTable*)workSpace + dtablePos; local 258 /* correct offset to dtable depends on this property */ 276 CHECK_F( FSE_buildDTable_internal(dtable, wksp->ncount, maxSymbolValue, tableLog, workSpace, wkspSize) ); 279 const void* ptr = dtable; 284 if (fastMode) return FSE_decompress_usingDTable_generic(dst, dstCapacity, ip, cSrcSize, dtable, 1); 285 return FSE_decompress_usingDTable_generic(dst, dstCapacity, ip, cSrcSize, dtable, 0);
|
| /src/usr.bin/sort/ |
| init.c | 77 static u_char dtable[NBINS], itable[NBINS]; variable 204 cur_fld->mask = dtable; 412 * itable[] and dtable[] are the masks for -i (ignore non-printables) 445 dtable[i] = 1;
|
| /src/external/bsd/zstd/dist/lib/decompress/ |
| huf_decompress_amd64.S | 65 * op[], bits[], dtable & ip[0] each get their own register. 84 #define dtable r14 define 153 movq 96(%rax), %dtable 228 movzwl (%dtable,%var##n,2),%vard##n 230 /* var[n] must contain the DTable entry computed with GET_NEXT_DELT 407 movq 96(%rax), %dtable 508 movzwl 0(%dtable,%rax,4),%r8d; \ 509 movzbl 2(%dtable,%rax,4),%r15d; \ 510 movzbl 3(%dtable,%rax,4),%eax; \
|
| huf_decompress.c | 94 const HUF_DTable *DTable); 103 const HUF_DTable* DTable) \ 105 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ 111 const HUF_DTable* DTable) \ 113 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ 117 size_t cSrcSize, HUF_DTable const* DTable, int flags) \ 120 return fn##_bmi2(dst, dstSize, cSrc, cSrcSize, DTable); \ 122 return fn##_default(dst, dstSize, cSrc, cSrcSize, DTable); \ 129 size_t cSrcSize, HUF_DTable const* DTable, int flags) \ 132 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ 726 U16 const* const dtable = (U16 const*)args->dt; local 1530 HUF_DEltX2 const* const dtable = (HUF_DEltX2 const*)args->dt; local [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/objc-private/ |
| module-abi-8.h | 221 struct sarray * dtable; /* Pointer to instance method member in struct:objc_class
|
| /src/external/gpl3/gcc/dist/libobjc/objc-private/ |
| module-abi-8.h | 221 struct sarray * dtable; /* Pointer to instance method member in struct:objc_class
|
| /src/external/gpl3/gcc/dist/libcpp/ |
| directives.cc | 190 static const directive dtable[] = variable 321 if (pfile->directive != &dtable[T_DEFINE]) 349 if (pfile->directive != &dtable[T_DEFINE]) 355 pfile->state.in_expression = (pfile->directive == &dtable[T_IF] 356 || pfile->directive == &dtable[T_ELIF]); 385 && !(dir == &dtable[T_IMPORT] && CPP_OPTION (pfile, objc)) 388 else if (dir == &dtable[T_WARNING]) 404 || (dir == &dtable[T_IMPORT] && !CPP_OPTION (pfile, objc))) 418 if (dir == &dtable[T_ELIF]) 434 to save unnecessarily exporting dtable etc. to lex.cc. Return [all...] |
| /src/external/gpl3/gcc.old/dist/libcpp/ |
| directives.cc | 190 static const directive dtable[] = variable 321 if (pfile->directive != &dtable[T_DEFINE]) 349 if (pfile->directive != &dtable[T_DEFINE]) 355 pfile->state.in_expression = (pfile->directive == &dtable[T_IF] 356 || pfile->directive == &dtable[T_ELIF]); 385 && !(dir == &dtable[T_IMPORT] && CPP_OPTION (pfile, objc)) 389 || (dir == &dtable[T_IMPORT] && !CPP_OPTION (pfile, objc))) 403 if (dir == &dtable[T_ELIF]) 419 to save unnecessarily exporting dtable etc. to lex.cc. Returns 449 dir = &dtable[dname->val.node.node->directive_index] [all...] |