/external/grpc-grpc/test/core/avl/ |
D | avl_test.cc | 48 static void check_get(grpc_avl avl, int key, int value) { in check_get() argument 50 GPR_ASSERT(*(int*)grpc_avl_get(avl, k, nullptr) == value); in check_get() 54 static void check_negget(grpc_avl avl, int key) { in check_negget() argument 56 GPR_ASSERT(grpc_avl_get(avl, k, nullptr) == nullptr); in check_negget() 60 static grpc_avl remove_int(grpc_avl avl, int key) { in remove_int() argument 62 avl = grpc_avl_remove(avl, k, nullptr); in remove_int() 64 return avl; in remove_int() 68 grpc_avl avl; in test_get() local 70 avl = grpc_avl_create(&int_int_vtable); in test_get() 71 avl = grpc_avl_add(avl, box(1), box(11), nullptr); in test_get() [all …]
|
D | BUILD | 19 grpc_package(name = "test/core/avl")
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/avl/ |
D | avl.cc | 112 void* grpc_avl_get(grpc_avl avl, void* key, void* user_data) { in grpc_avl_get() argument 113 grpc_avl_node* node = get(avl.vtable, avl.root, key, user_data); in grpc_avl_get() 117 int grpc_avl_maybe_get(grpc_avl avl, void* key, void** value, void* user_data) { in grpc_avl_maybe_get() argument 118 grpc_avl_node* node = get(avl.vtable, avl.root, key, user_data); in grpc_avl_maybe_get() 228 grpc_avl grpc_avl_add(grpc_avl avl, void* key, void* value, void* user_data) { in grpc_avl_add() argument 229 grpc_avl_node* old_root = avl.root; in grpc_avl_add() 230 avl.root = add_key(avl.vtable, avl.root, key, value, user_data); in grpc_avl_add() 231 assert_invariants(avl.root); in grpc_avl_add() 232 unref_node(avl.vtable, old_root, user_data); in grpc_avl_add() 233 return avl; in grpc_avl_add() [all …]
|
D | avl.h | 68 grpc_avl grpc_avl_ref(grpc_avl avl, void* user_data); 72 void grpc_avl_unref(grpc_avl avl, void* user_data); 78 grpc_avl grpc_avl_add(grpc_avl avl, void* key, void* value, void* user_data); 82 grpc_avl grpc_avl_remove(grpc_avl avl, void* key, void* user_data); 87 void* grpc_avl_get(grpc_avl avl, void* key, void* user_data); 90 int grpc_avl_maybe_get(grpc_avl avl, void* key, void** value, void* user_data); 92 int grpc_avl_is_empty(grpc_avl avl);
|
/external/grpc-grpc/src/core/lib/avl/ |
D | avl.cc | 112 void* grpc_avl_get(grpc_avl avl, void* key, void* user_data) { in grpc_avl_get() argument 113 grpc_avl_node* node = get(avl.vtable, avl.root, key, user_data); in grpc_avl_get() 117 int grpc_avl_maybe_get(grpc_avl avl, void* key, void** value, void* user_data) { in grpc_avl_maybe_get() argument 118 grpc_avl_node* node = get(avl.vtable, avl.root, key, user_data); in grpc_avl_maybe_get() 228 grpc_avl grpc_avl_add(grpc_avl avl, void* key, void* value, void* user_data) { in grpc_avl_add() argument 229 grpc_avl_node* old_root = avl.root; in grpc_avl_add() 230 avl.root = add_key(avl.vtable, avl.root, key, value, user_data); in grpc_avl_add() 231 assert_invariants(avl.root); in grpc_avl_add() 232 unref_node(avl.vtable, old_root, user_data); in grpc_avl_add() 233 return avl; in grpc_avl_add() [all …]
|
D | avl.h | 68 grpc_avl grpc_avl_ref(grpc_avl avl, void* user_data); 72 void grpc_avl_unref(grpc_avl avl, void* user_data); 78 grpc_avl grpc_avl_add(grpc_avl avl, void* key, void* value, void* user_data); 82 grpc_avl grpc_avl_remove(grpc_avl avl, void* key, void* user_data); 87 void* grpc_avl_get(grpc_avl avl, void* key, void* user_data); 90 int grpc_avl_maybe_get(grpc_avl avl, void* key, void** value, void* user_data); 92 int grpc_avl_is_empty(grpc_avl avl);
|
/external/llvm-project/llvm/lib/Target/VE/ |
D | VVPInstrPatternsVec.td | 28 DataVT:$vy, (MaskVT true_mask), i32:$avl), 30 ScalarVT:$sx, $vy, $avl)>; 31 def : Pat<(OpNode DataVT:$vx, DataVT:$vy, (MaskVT true_mask), i32:$avl), 33 $vx, $vy, $avl)>; 38 DataVT:$vy, MaskVT:$mask, i32:$avl), 40 ScalarVT:$sx, $vy, $mask, $avl)>; 41 def : Pat<(OpNode DataVT:$vx, DataVT:$vy, MaskVT:$mask, i32:$avl), 43 $vx, $vy, $mask, $avl)>;
|
/external/crosvm/x86_64/src/ |
D | gdt.rs | 78 avl: get_avl(entry), in segment_from_gdt() 95 assert_eq!(0x0, seg.avl); in field_parse()
|
D | regs.rs | 388 assert_eq!(0, sregs.ss.avl); in segments_and_sregs() 391 assert_eq!(0, sregs.tr.avl); in segments_and_sregs()
|
/external/selinux/python/sepolgen/tests/ |
D | test_access.py | 320 avl = a.to_list() 321 avl.sort() 328 for a,b in zip(test_l, avl): 339 b.from_list(avl)
|
/external/autotest/test_suites/ |
D | control.hardware_memoryqual | 38 # Retrieve bug_id, part_id for the avl process.
|
D | control.hardware_thermalqual_full | 38 # Retrieve bug_id, part_id for the avl process.
|
/external/strace/linux/x86_64/ |
D | arch_kvm.c | 56 PRINT_FIELD_U(", ", *segment, avl); in kvm_ioctl_decode_regs_segment()
|
/external/python/cpython2/PC/ |
D | dllbase_nt.txt | 45 - avl 1e270000 - 1e270000
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | interfaces.py | 344 avl = sorted(iv.access.to_list()) 345 for av in avl:
|
/external/cldr/tools/java/org/unicode/cldr/json/ |
D | Ldml2JsonConverter.java | 74 private availableLocales avl = new availableLocales(); field in Ldml2JsonConverter 486 avl.modern.add(filename.replaceAll("_", "-")); in convertCldrItems() 492 avl.full.add(filename.replaceAll("_", "-")); in convertCldrItems() 790 obj.add("availableLocales", gson.toJsonTree(avl)); in writeAvailableLocales()
|
/external/crosvm/hypervisor/src/kvm/ |
D | x86_64.rs | 993 avl: s.avl, in from() 1011 avl: s.avl, in from()
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
D | kvm.h | 138 __u8 present, dpl, db, s, l, g, avl; member
|
/external/strace/tests/ |
D | ioctl_kvm_run_common.c | 95 seg->avl); in print_kvm_segment()
|
/external/strace/tests-m32/ |
D | ioctl_kvm_run_common.c | 95 seg->avl); in print_kvm_segment()
|
/external/strace/tests-mx32/ |
D | ioctl_kvm_run_common.c | 95 seg->avl); in print_kvm_segment()
|
/external/crosvm/hypervisor/src/ |
D | x86_64.rs | 508 pub avl: u8, field
|
/external/grpc-grpc/ |
D | gRPC-C++.podspec | 358 'src/core/lib/avl/avl.h', 548 'src/core/lib/avl/avl.h',
|
D | gRPC-Core.podspec | 367 'src/core/lib/avl/avl.h', 520 'src/core/lib/avl/avl.cc', 972 'src/core/lib/avl/avl.h',
|
/external/linux-kselftest/tools/testing/selftests/kvm/include/x86_64/ |
D | processor.h | 61 unsigned limit1:4, avl:1, l:1, db:1, g:1, base2:8; member
|