Home
last modified time | relevance | path

Searched refs:e2 (Results 1 – 14 of 14) sorted by relevance

/xnu-11215/tests/vm/
H A Dvm_unaligned_copy_protection_race.c68 vm_address_t e1, e2, e5; variable
96 e2 = 0;
98 &e2,
105 &e2,
110 memset((char *)e2, 'B', ctx->obj_size);
113 ctx->e0 = e2 + ctx->obj_size;
147 e2 + 1,
177 vm_deallocate(mach_task_self(), e2, ctx->obj_size);
178 e2 = 0;
H A Dvm_unaligned_copy_switch_race.c83 vm_address_t e2, e5; variable
213 e2 = 0;
215 &e2,
222 &e2,
227 memset((char *)e2, 'B', ctx->obj_size);
230 ctx->e0 = e2 + ctx->obj_size;
253 e2 + 1,
281 vm_deallocate(mach_task_self(), e2, ctx->obj_size);
282 e2 = 0;
/xnu-11215/libkern/c++/
H A Dpriority_queue.cpp58 compare(queue_t que, priority_queue_entry_t e1, priority_queue_entry_t e2) in compare()
60 return que->pq_cmp_fn(e1, e2); in compare()
70 return priority_heap_compare_ints(e1->deadline, e2->deadline); in compare()
78 priority_queue_entry_sched_t e1, priority_queue_entry_sched_t e2) in compare()
80 return (int)e2->key - (int)e1->key; in compare()
88 priority_queue_entry_stable_t e1, priority_queue_entry_stable_t e2) in compare()
94 if (e1->key != e2->key) { in compare()
95 return (int)e2->key - (int)e1->key; in compare()
97 if (e1->stamp != e2->stamp) { in compare()
103 return e1->stamp < e2->stamp ? 1 : -1; in compare()
[all …]
H A DOSDictionary.cpp67 const OSDictionary::dictEntry *e2 = (const OSDictionary::dictEntry *)_e2; in compare() local
69 if ((uintptr_t)e1->key.get() == (uintptr_t)e2->key.get()) { in compare()
73 return (uintptr_t)e1->key.get() > (uintptr_t)e2->key.get() ? 1 : -1; in compare()
/xnu-11215/san/memory/
H A Dkasan_dynamic_blacklist.c160 range_tree_cmp(const struct range_tree_entry *e1, const struct range_tree_entry *e2) in range_tree_cmp() argument
162 if (e1->size == 0 || e2->size == 0) { in range_tree_cmp()
164 if (e1->base + e1->size < e2->base) { in range_tree_cmp()
166 } else if (e1->base > e2->base + e2->size) { in range_tree_cmp()
173 if (e1->base + e1->size <= e2->base) { in range_tree_cmp()
175 } else if (e1->base >= e2->base + e2->size) { in range_tree_cmp()
/xnu-11215/iokit/IOKit/
H A DIOStatisticsPrivate.h171 static int loadTagCompare(IOWorkLoopDependency *e1, IOWorkLoopDependency *e2);
204 static int kextNodeCompare(KextNode *e1, KextNode *e2);
209 static int kextAddressNodeCompare(KextNode *e1, KextNode *e2);
214 static int classNodeCompare(ClassNode *e1, ClassNode *e2);
/xnu-11215/iokit/Kernel/
H A DIOStatistics.cpp81 IOStatistics::kextNodeCompare(KextNode *e1, KextNode *e2) in kextNodeCompare() argument
83 if (e1->kext < e2->kext) { in kextNodeCompare()
85 } else if (e1->kext > e2->kext) { in kextNodeCompare()
99 IOStatistics::kextAddressNodeCompare(KextNode *e1, KextNode *e2) in kextAddressNodeCompare() argument
101 if (e1->address < e2->address) { in kextAddressNodeCompare()
103 } else if (e1->address > e2->address) { in kextAddressNodeCompare()
117 IOStatistics::classNodeCompare(ClassNode *e1, ClassNode *e2) in classNodeCompare() argument
119 if (e1->metaClass < e2->metaClass) { in classNodeCompare()
121 } else if (e1->metaClass > e2->metaClass) { in classNodeCompare()
135 if (e1->loadTag < e2->loadTag) { in loadTagCompare()
[all …]
/xnu-11215/EXTERNAL_HEADERS/corecrypto/
H A Dccn.h158 #define CCN384_C(f7,f6,f5,f4,f3,f2,f1,f0,e7,e6,e5,e4,e3,e2,e1,e0,d7,d6,d5,d4,d3,d2,d1,d0,c7,c6,c5,c… argument
160 CCN64_C(e7,e6,e5,e4,e3,e2,e1,e0),\
163 #define CCN448_C(g7,g6,g5,g4,g3,g2,g1,g0,f7,f6,f5,f4,f3,f2,f1,f0,e7,e6,e5,e4,e3,e2,e1,e0,d7,d6,d5,d… argument
165 CCN192_C(g7,g6,g5,g4,g3,g2,g1,g0,f7,f6,f5,f4,f3,f2,f1,f0,e7,e6,e5,e4,e3,e2,e1,e0)
167 …h3,h2,h1,h0,g7,g6,g5,g4,g3,g2,g1,g0,f7,f6,f5,f4,f3,f2,f1,f0,e7,e6,e5,e4,e3,e2,e1,e0,d7,d6,d5,d4,d3… argument
169 …(h7,h6,h5,h4,h3,h2,h1,h0,g7,g6,g5,g4,g3,g2,g1,g0,f7,f6,f5,f4,f3,f2,f1,f0,e7,e6,e5,e4,e3,e2,e1,e0),\
/xnu-11215/osfmk/kern/
H A Dexclaves_boot.c76 ebt_cmp(const void *e1, const void *e2) in ebt_cmp() argument
79 const struct exclaves_boot_task_entry *b = e2; in ebt_cmp()
H A Dstartup.c247 startup_entry_cmp(const void *e1, const void *e2) in startup_entry_cmp() argument
250 const struct startup_entry *b = e2; in startup_entry_cmp()
H A Dpriority_queue.h227 struct priority_queue_entry *e2);
H A Dbtlog.c1543 btlog_record_cmp_where(const void *e1, const void *e2) in btlog_record_cmp_where() argument
1546 const struct btlog_record *b = e2; in btlog_record_cmp_where()
1578 btlog_record_cmp_rev_count(const void *e1, const void *e2) in btlog_record_cmp_rev_count() argument
1581 const struct btlog_record *b = e2; in btlog_record_cmp_rev_count()
/xnu-11215/osfmk/vm/
H A Dvm_user.c1935 vm_map_user_range_cmp(const void *e1, const void *e2) in vm_map_user_range_cmp() argument
1938 const struct vm_map_user_range *r2 = e2; in vm_map_user_range_cmp()
1948 mach_vm_range_recipe_v1_cmp(const void *e1, const void *e2) in mach_vm_range_recipe_v1_cmp() argument
1951 const mach_vm_range_recipe_v1_t *r2 = e2; in mach_vm_range_recipe_v1_cmp()
/xnu-11215/bsd/kern/
H A Dsys_generic.c1481 int e2 = putbits(ex, 2); in selprocess() local
1483 error = e0 ?: e1 ?: e2; in selprocess()