/external/libldac/src/ |
D | ldacBT_internal.c | 82 hLdacBT->sfid = UNSET; in ldacBT_param_clear() 83 hLdacBT->pcm.sf = UNSET; in ldacBT_param_clear() 84 hLdacBT->tx.mtu = UNSET; in ldacBT_param_clear() 85 hLdacBT->tx.tx_size = UNSET; in ldacBT_param_clear() 86 hLdacBT->tx.pkt_hdr_sz = UNSET; in ldacBT_param_clear() 87 hLdacBT->frmlen_tx = UNSET; in ldacBT_param_clear() 88 hLdacBT->tx.nfrm_in_pkt = UNSET; in ldacBT_param_clear() 92 hLdacBT->frmlen = UNSET; in ldacBT_param_clear() 96 hLdacBT->tgt_nfrm_in_pkt = UNSET; in ldacBT_param_clear() 97 hLdacBT->tgt_frmlen = UNSET; in ldacBT_param_clear() [all …]
|
D | ldacBT_internal.h | 78 #ifndef UNSET 79 #define UNSET -1 macro
|
/external/selinux/libselinux/src/ |
D | procattr.c | 12 #define UNSET (char *) -1 macro 14 static __thread char *prev_current = UNSET; 15 static __thread char * prev_exec = UNSET; 16 static __thread char * prev_fscreate = UNSET; 17 static __thread char * prev_keycreate = UNSET; 18 static __thread char * prev_sockcreate = UNSET; 46 if (prev_current != UNSET) in procattr_thread_destructor() 48 if (prev_exec != UNSET) in procattr_thread_destructor() 50 if (prev_fscreate != UNSET) in procattr_thread_destructor() 52 if (prev_keycreate != UNSET) in procattr_thread_destructor() [all …]
|
/external/llvm-project/llvm/utils/lit/tests/Inputs/shtest-env/ |
D | env-u.txt | 9 # RUN: | FileCheck --check-prefix=CHECK-ENV-UNSET-1 %s 14 # RUN: | FileCheck --check-prefix=CHECK-ENV-UNSET-MULTIPLE %s 19 # CHECK-ENV-UNSET-1: BAR = 2 20 # CHECK-ENV-UNSET-1-NOT: FOO 22 # CHECK-ENV-UNSET-MULTIPLE-NOT: BAR 23 # CHECK-ENV-UNSET-MULTIPLE-NOT: FOO
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | ObjectCountHashMap.java | 75 static final int UNSET = -1; field in ObjectCountHashMap 152 Arrays.fill(array, UNSET); in newTable() 158 Arrays.fill(array, UNSET); in newEntries() 284 if (next == UNSET) { in put() 299 } while (next != UNSET); in put() 320 this.entries[entryIndex] = ((long) hash << 32) | (NEXT_MASK & UNSET); in insertEntry() 350 Arrays.fill(entries, oldCapacity, newCapacity, UNSET); in resizeEntries() 383 while (next != UNSET) { in indexOf() 410 if (next == UNSET) { // empty bucket in remove() 413 int last = UNSET; in remove() [all …]
|
D | CompactHashSet.java | 20 import static com.google.common.collect.CompactHashing.UNSET; 303 if (next == UNSET) { // uninitialized bucket in add() 324 } while (next != UNSET); in add() 348 this.entries[entryIndex] = CompactHashing.maskCombine(hash, UNSET, mask); in insertEntry() 379 if (targetEntryIndex != UNSET) { in resizeTable() 390 while (next != UNSET) { in resizeTable() 423 if (next == UNSET) { in contains() 435 } while (next != UNSET); in contains() 629 resizeTable(mask, minimumTableSize, UNSET, UNSET); in trimToSize()
|
D | CompactHashing.java | 35 static final byte UNSET = 0; field in CompactHashing 156 if (next == UNSET) { in remove() 180 } while (next != UNSET); in remove()
|
D | CompactHashMap.java | 20 import static com.google.common.collect.CompactHashing.UNSET; 299 if (next == UNSET) { // uninitialized bucket in put() 326 } while (next != UNSET); in put() 350 this.entries[entryIndex] = CompactHashing.maskCombine(hash, UNSET, mask); in insertEntry() 383 if (targetEntryIndex != UNSET) { in resizeTable() 394 while (next != UNSET) { in resizeTable() 422 if (next == UNSET) { in indexOf() 434 } while (next != UNSET); in indexOf() 884 resizeTable(mask, minimumTableSize, UNSET, UNSET);
|
D | ObjectCountLinkedHashMap.java | 93 Arrays.fill(links, UNSET); in init() 166 Arrays.fill(links, oldCapacity, newCapacity, UNSET); in resizeEntries()
|
/external/llvm-project/openmp/libomptarget/deviceRTLs/nvptx/src/ |
D | target_impl.cu | 18 #define UNSET 0u macro 31 while (__kmpc_atomic_cas(lock, UNSET, SET) != UNSET) { in __kmpc_impl_set_lock() 45 (void)__kmpc_atomic_exchange(lock, UNSET); in __kmpc_impl_unset_lock()
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | rpc_service_method.h | 64 async_type_(AsyncType::UNSET), in RpcServiceMethod() 68 UNSET, enumerator 79 if (async_type_ == AsyncType::UNSET) { in SetServerAsyncType() 103 case AsyncType::UNSET: in TypeToString()
|
/external/opencensus-java/api/src/test/java/io/opencensus/metrics/ |
D | LabelValueTest.java | 32 private static final LabelValue UNSET = LabelValue.create(null); field in LabelValueTest 38 assertThat(UNSET.getValue()).isNull(); in testGetValue() 69 .addEqualityGroup(UNSET) in testLabelValueEquals()
|
/external/guava/guava/src/com/google/common/collect/ |
D | CompactHashSet.java | 21 import static com.google.common.collect.CompactHashing.UNSET; 307 if (next == UNSET) { // uninitialized bucket in add() 328 } while (next != UNSET); in add() 352 this.entries[entryIndex] = CompactHashing.maskCombine(hash, UNSET, mask); in insertEntry() 383 if (targetEntryIndex != UNSET) { in resizeTable() 394 while (next != UNSET) { in resizeTable() 427 if (next == UNSET) { in contains() 439 } while (next != UNSET); in contains() 658 resizeTable(mask, minimumTableSize, UNSET, UNSET); in trimToSize()
|
D | CompactHashing.java | 35 static final byte UNSET = 0; field in CompactHashing 156 if (next == UNSET) { in remove() 180 } while (next != UNSET); in remove()
|
D | CompactHashMap.java | 21 import static com.google.common.collect.CompactHashing.UNSET; 302 if (next == UNSET) { // uninitialized bucket in put() 329 } while (next != UNSET); in put() 353 this.entries[entryIndex] = CompactHashing.maskCombine(hash, UNSET, mask); in insertEntry() 386 if (targetEntryIndex != UNSET) { in resizeTable() 397 while (next != UNSET) { in resizeTable() 425 if (next == UNSET) { in indexOf() 437 } while (next != UNSET); in indexOf() 998 resizeTable(mask, minimumTableSize, UNSET, UNSET);
|
/external/rust/crates/rayon-core/src/ |
D | latch.rs | 51 const UNSET: usize = 0; constant 93 .compare_exchange(UNSET, SLEEPY, Ordering::SeqCst, Ordering::Relaxed) in get_sleepy() 115 .compare_exchange(SLEEPING, UNSET, Ordering::SeqCst, Ordering::Relaxed); in wake_up()
|
/external/llvm-project/libcxxabi/src/ |
D | cxa_guard_impl.h | 179 static constexpr uint8_t UNSET = 0; variable 204 if (guard_byte.load(std::_AO_Acquire) != UNSET) in cxa_guard_acquire() 253 void abort_init_byte() { *init_byte_address = UNSET; } in abort_init_byte() 357 *init_byte_address = UNSET; in abort_init_byte() 441 uint8_t last_val = UNSET; in acquire_init_byte() 472 if (last_val == UNSET) in acquire_init_byte()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
D | Subroutines.java | 77 private static final int UNSET = -1; field in Subroutines.SubroutineImpl 85 private int localVariable = UNSET; 146 if (localVariable == UNSET) { in setLeavingRET() 189 if (localVariable == UNSET) { in addEnteringJsrInstruction() 338 if (localVariable != UNSET) { in setLocalVariable()
|
/external/exoplayer/tree/testdata/src/test/assets/mp3/ |
D | play-trimmed.mp3.unknown_length.dump | 3 duration = UNSET TIME
|
/external/exoplayer/tree/testdata/src/test/assets/ts/ |
D | sample_ac3.ps.unknown_length.dump | 3 duration = UNSET TIME
|
D | sample_latm.ts.unknown_length.dump | 3 duration = UNSET TIME
|
D | sample_h264_no_access_unit_delimiters.ts.unknown_length.dump | 3 duration = UNSET TIME
|
D | sample_ac3.ts.unknown_length.dump | 3 duration = UNSET TIME
|
D | sample.ac3.unknown_length.dump | 3 duration = UNSET TIME
|
/external/protobuf/php/tests/proto/ |
D | test_reserved_enum_value_upper.proto | 65 UNSET = 59; enumerator
|