| /xnu-11215/libkern/c++/ |
| H A D | OSDictionary.cpp | 97 if (!dictionary) { in initWithCapacity() 211 dictionary[i].key = dict->dictionary[i].key; in initWithDictionary() 212 dictionary[i].value = dict->dictionary[i].value; in initWithDictionary() 282 if (dictionary) { in free() 338 dictionary = newDict; in ensureCapacity() 351 dictionary[i].key.reset(); in flushCollection() 352 dictionary[i].value.reset(); in flushCollection() 371 i = OSSymbol::bsearch(aKey, &dictionary[0], count, sizeof(dictionary[0])); in setObject() 402 os::move_backward(&dictionary[i], &dictionary[count], &dictionary[count + 1]); in setObject() 449 i = OSSymbol::bsearch(aKey, &dictionary[0], count, sizeof(dictionary[0])); in removeObject() [all …]
|
| H A D | OSSerializeBinary.cpp | 250 dictKey = dict->dictionary[i].key; in binarySerializeInternal() 251 dictValue = dict->dictionary[i].value; in binarySerializeInternal()
|
| /xnu-11215/osfmk/x86_64/ |
| H A D | WKdmCompress_new.s | 227 movl $0, 0(dictionary) 228 movl $0, 4(dictionary) 229 movl $0, 8(dictionary) 230 movl $0, 12(dictionary) 231 movl $0, 16(dictionary) 232 movl $0, 20(dictionary) 233 movl $0, 24(dictionary) 234 movl $0, 28(dictionary) 235 movl $0, 32(dictionary) 236 movl $0, 36(dictionary) [all …]
|
| /xnu-11215/osfmk/arm64/ |
| H A D | WKdmDecompress_16k.s | 109 #define dictionary sp macro 188 stp xzr, xzr, [dictionary, #0] 190 stp xzr, xzr, [dictionary, #16] 193 stp xzr, xzr, [dictionary, #32] 195 stp xzr, xzr, [dictionary, #48] 385 ldr eax, [dictionary, rdx, lsl #2] // read dictionary word 387 str eax, [dictionary,rdx,lsl #2] // *dict_location = newly formed word 415 str eax, [dictionary,rdx] // dictionary[qpos] = word 427 ldr eax, [dictionary,rax,lsl #2] // w = dictionary[qpos]
|
| H A D | WKdmDecompress_4k.s | 109 #define dictionary sp macro 188 stp xzr, xzr, [dictionary, #0] 190 stp xzr, xzr, [dictionary, #16] 193 stp xzr, xzr, [dictionary, #32] 195 stp xzr, xzr, [dictionary, #48] 385 ldr eax, [dictionary, rdx, lsl #2] // read dictionary word 387 str eax, [dictionary,rdx,lsl #2] // *dict_location = newly formed word 415 str eax, [dictionary,rdx] // dictionary[qpos] = word 427 ldr eax, [dictionary,rax,lsl #2] // w = dictionary[qpos]
|
| H A D | WKdmCompress_4k.s | 189 #define dictionary x5 macro 247 mov dictionary, sp // use x5 to point to sp, so we can use sub xd, xn, sp 268 stp xzr, xzr, [dictionary, #0] // initialize dictionary 270 stp xzr, xzr, [dictionary, #16] // initialize dictionary 271 stp xzr, xzr, [dictionary, #32] // initialize dictionary 273 stp xzr, xzr, [dictionary, #48] // initialize dictionary 316 ldr eax, [dictionary, dict_location] // dict_word = *dict_location; 335 str edx, [dictionary, dict_location] // *dict_location = input_word 500 str edx, [dictionary, dict_location] // *dict_location = input_word;
|
| H A D | WKdmCompress_16k.s | 191 #define dictionary x5 macro 249 mov dictionary, sp // use x5 to point to sp, so we can use sub xd, xn, sp 270 stp xzr, xzr, [dictionary, #0] // initialize dictionary 272 stp xzr, xzr, [dictionary, #16] // initialize dictionary 273 stp xzr, xzr, [dictionary, #32] // initialize dictionary 275 stp xzr, xzr, [dictionary, #48] // initialize dictionary 318 ldr eax, [dictionary, dict_location] // dict_word = *dict_location; 337 str edx, [dictionary, dict_location] // *dict_location = input_word 502 str edx, [dictionary, dict_location] // *dict_location = input_word;
|
| /xnu-11215/libkern/kxld/ |
| H A D | WKdmCompress.c | 97 DictionaryElement dictionary[DICTIONARY_SIZE]; in WKdm_compress() local 134 printf("dictionary is at %u\n", dictionary); in WKdm_compress() 150 ((void*) (((char*) dictionary) + HASH_TO_DICT_BYTE_OFFSET(input_word))); in WKdm_compress() 155 RECORD_EXACT(dict_location - dictionary); in WKdm_compress() 161 RECORD_PARTIAL(dict_location - dictionary, LOW_BITS(input_word)); in WKdm_compress()
|
| H A D | WKdmDecompress.c | 126 DictionaryElement dictionary[DICTIONARY_SIZE]; in WKdm_decompress() local 231 WK_word *dict_location = dictionary + *(next_q_pos++); in WKdm_decompress() 237 WK_word *dict_location = dictionary + *(next_q_pos++); in WKdm_decompress() 256 ((void *) (((char *) dictionary) + HASH_TO_DICT_BYTE_OFFSET(missed_word))); in WKdm_decompress()
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | nvram.py | 29 name = var_dict.dictionary[x].key.string 30 value = var_dict.dictionary[x].value
|
| H A D | ioreg.py | 1073 address = kern.globals.sAllClassesDict.dictionary[idx].value 1368 if comparer(key, osdict.dictionary[idx].key) == 0: 1369 result = osdict.dictionary[idx].value 1370 elif key == osdict.dictionary[idx].key: 1371 result = osdict.dictionary[idx].value 1386 if key_str == str(propertyTable.dictionary[idx].key.string): 1387 result = propertyTable.dictionary[idx].value 1401 … += prefix + " " + GetObjectSummary(osdict.dictionary[idx].key) + " = " + GetObjectSummary(osdict… 1457 key = d.dictionary[idx].key 1458 value = d.dictionary[idx].value [all …]
|
| H A D | kext.py | 383 for kext_dict in (GetObjectAtIndexFromArray(kext_ptr.dictionary, i)
|
| /xnu-11215/iokit/DriverKit/ |
| H A D | IOService.iig | 192 …am properties Returned, retained dictionary of properties or NULL. The caller should release… 217 * @brief Send a dictionary of properties to an IOService. 383 * @abstract Construct a matching dictionary for property matching. 389 * @abstract Construct a matching dictionary for property matching. 395 * @abstract Construct a matching dictionary for kernel class matching. 401 * @abstract Construct a matching dictionary for kernel class matching. 407 * @abstract Construct a matching dictionary for user class matching. 413 * @abstract Construct a matching dictionary for user class matching. 419 * @abstract Construct a matching dictionary for IOService name matching. 425 * @abstract Construct a matching dictionary for IOService name matching. [all …]
|
| H A D | IOServiceNotificationDispatchSource.iig | 52 * @param matching An IOService matching dictionary.
|
| H A D | IOUserClient.iig | 269 * @abstract Return owning task's entitlements dictionary.
|
| /xnu-11215/libkern/libkern/c++/ |
| H A D | OSDictionary.h | 138 dictEntry * OS_PTRAUTH_SIGNED_PTR("OSDictionary.dictionary") dictionary; 150 dictEntry * OS_PTRAUTH_SIGNED_PTR("OSDictionary.dictionary") dictionary;
|
| /xnu-11215/iokit/Kernel/ |
| H A D | IOServicePrivate.h | 200 virtual bool init( OSDictionary * dictionary = NULL ) APPLE_KEXT_OVERRIDE; 217 virtual bool init( OSDictionary * dictionary = NULL ) APPLE_KEXT_OVERRIDE;
|
| /xnu-11215/libkern/libkern/ |
| H A D | zlib.h | 568 const Bytef *dictionary, 775 const Bytef *dictionary,
|
| /xnu-11215/libkern/zlib/ |
| H A D | inflate.c | 1215 inflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in inflateSetDictionary() argument 1229 id = adler32(id, dictionary, dictLength); in inflateSetDictionary() 1240 zmemcpy(state->window, dictionary + dictLength - state->wsize, in inflateSetDictionary() 1245 zmemcpy(state->window + state->wsize - dictLength, dictionary, in inflateSetDictionary()
|
| H A D | deflate.c | 336 deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in deflateSetDictionary() argument 343 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL || in deflateSetDictionary() 350 strm->adler = adler32(strm->adler, dictionary, dictLength); in deflateSetDictionary() 355 dictionary += dictLength - length; /* use the tail of the dictionary */ in deflateSetDictionary() 357 zmemcpy(s->window, dictionary, length); in deflateSetDictionary()
|
| /xnu-11215/libsyscall/mach/ |
| H A D | err_libkern.sub | 52 "(libkern/metaclass) failed to insert class into class dictionary", /* 7 */
|
| /xnu-11215/iokit/IOKit/ |
| H A D | IOUserClient.h | 386 virtual bool init( OSDictionary * dictionary ) APPLE_KEXT_OVERRIDE;
|
| H A D | IORegistryEntry.h | 279 virtual bool init( OSDictionary * dictionary = NULL );
|
| /xnu-11215/libkdd/ |
| H A D | kcdata_core.m | 378 NSMutableDictionary * rootObject = [NSMutableDictionary dictionary];
|
| /xnu-11215/doc/vm/ |
| H A D | freezer.md | 50 …ps://stashweb.sd.apple.com/projects/COREOS/repos/runningboard/browse) dictionary section of their…
|