/external/rust/crates/getrandom/src/ |
D | util.rs | 33 Self(AtomicUsize::new(Self::UNINIT)) in new() 37 pub const UNINIT: usize = usize::max_value(); constant 45 if val == Self::UNINIT { in unsync_init()
|
D | use_file.rs | 53 static FD: AtomicUsize = AtomicUsize::new(LazyUsize::UNINIT); in get_rng_fd() 56 LazyUsize::UNINIT => None, in get_rng_fd() 82 debug_assert!(fd >= 0 && (fd as usize) < LazyUsize::UNINIT); in get_rng_fd()
|
/external/javassist/src/main/javassist/bytecode/ |
D | StackMap.java | 111 public static final int UNINIT = 8; field in StackMap 189 else if (tag == UNINIT) { in typeInfoArray2() 267 dest[pos] = UNINIT; in uninitialized() 342 writer.writeVerifyTypeInfo(UNINIT, offset); in uninitialized() 379 else if (varTag == UNINIT) in writeVarTypeInfo() 380 writer.writeVerifyTypeInfo(UNINIT, varData); in writeVarTypeInfo() 479 else if (tag == UNINIT) { in stackTypeInfoArray() 498 else if (tag == UNINIT) { in stackTypeInfoArray() 579 if (tag == StackMap.OBJECT || tag == StackMap.UNINIT) in writeVerifyTypeInfo()
|
D | StackMapTable.java | 143 public static final int UNINIT = 8; field in StackMapTable 251 if (tag == OBJECT || tag == UNINIT) { in sameLocals() 294 if (tag == OBJECT || tag == UNINIT) { in appendFrame() 355 if (tag == OBJECT || tag == UNINIT) { in verifyTypeInfo() 696 if (tag == OBJECT || tag == UNINIT) in writeTypeInfo() 812 case UNINIT : in printTypeInfo() 840 if (tag == UNINIT) in objectOrUninitialized() 1044 if (stackTag == UNINIT && stackData == posOfNew) 1055 if (stackTags[i] == UNINIT && stackData[i] == posOfNew 1056 && stackTags[i + 1] == UNINIT && stackData[i + 1] == posOfNew) {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | RegisterType.java | 99 public static final byte UNINIT = 1; field in RegisterType 154 …/*UNKNOWN*/ {UNKNOWN, UNINIT, NULL, ONE, BOOLEAN, BYTE, POS_BYTE,… 155 …/*UNINIT*/ {UNINIT, UNINIT, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTE… 178 public static final RegisterType UNINIT_TYPE = new RegisterType(UNINIT, null); 315 case UNINIT: in getRegisterType()
|
D | MethodAnalyzer.java | 169 RegisterType uninit = RegisterType.getRegisterType(RegisterType.UNINIT, null); in analyze()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Type.java | 74 public static final Type UNINIT = new Type(null); field in Type 251 if ((type == UNINIT && isReference()) || this == UNINIT && type.isReference()) in isAssignableFrom() 288 if (type == Type.UNINIT) in merge() 290 if (this == Type.UNINIT) in merge() 587 if (this == UNINIT) in toString()
|
D | Executor.java | 77 frame.push(Type.UNINIT); in execute() 590 if (! array.isArray() && array != Type.UNINIT) in execute() 641 if (array == Type.UNINIT) { in evalArrayLoad() 644 simplePush(Type.UNINIT, frame); in evalArrayLoad() 668 if (array == Type.UNINIT) { in evalArrayStore()
|
D | MultiType.java | 223 if (type == UNINIT) in merge()
|
/external/llvm-project/openmp/runtime/src/ |
D | kmp_ftn_entry.h | 1017 typedef enum { UNINIT = -1, UNLOCKED, LOCKED } kmp_stub_lock_t; enumerator 1076 *((kmp_stub_lock_t *)user_lock) = UNINIT; in KMP_EXPAND_NAME() 1088 *((kmp_stub_lock_t *)user_lock) = UNINIT; in KMP_EXPAND_NAME() 1100 if (*((kmp_stub_lock_t *)user_lock) == UNINIT) { in KMP_EXPAND_NAME() 1118 if (*((kmp_stub_lock_t *)user_lock) == UNINIT) { in KMP_EXPAND_NAME() 1133 if (*((kmp_stub_lock_t *)user_lock) == UNINIT) { in KMP_EXPAND_NAME() 1151 if (*((kmp_stub_lock_t *)user_lock) == UNINIT) { in KMP_EXPAND_NAME() 1169 if (*((kmp_stub_lock_t *)user_lock) == UNINIT) { in KMP_EXPAND_NAME() 1188 if (*((kmp_stub_lock_t *)user_lock) == UNINIT) { in KMP_EXPAND_NAME()
|
/external/compiler-rt/test/msan/ |
D | rand_r.cc | 10 #ifndef UNINIT in main()
|
D | mktime.cc | 14 #ifndef UNINIT in main()
|
/external/llvm-project/compiler-rt/test/msan/ |
D | rand_r.cpp | 10 #ifndef UNINIT in main()
|
D | mktime.cpp | 14 #ifndef UNINIT in main()
|
/external/compiler-rt/test/msan/Linux/ |
D | sunrpc.cc | 24 #ifndef UNINIT in main()
|
D | sunrpc_string.cc | 17 #ifndef UNINIT in main()
|
D | sunrpc_bytes.cc | 17 #ifndef UNINIT in main()
|
/external/llvm-project/compiler-rt/test/msan/Linux/ |
D | sunrpc.cpp | 26 #ifndef UNINIT in main()
|
D | sunrpc_string.cpp | 19 #ifndef UNINIT in main()
|
D | sunrpc_bytes.cpp | 19 #ifndef UNINIT in main()
|
/external/llvm-project/clang/test/Sema/ |
D | uninit-variables.c | 433 #define UNINIT(T, x, y) T x; T y = x; macro 436 UNINIT(int, a, b); // expected-warning {{variable 'a' is uninitialized when used here}} \ in test54()
|
/external/clang/test/Sema/ |
D | uninit-variables.c | 432 #define UNINIT(T, x, y) T x; T y = x; macro 435 UNINIT(int, a, b); // expected-warning {{variable 'a' is uninitialized when used here}} \ in test54()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/ |
D | SmaliCodeFragmentFactory.java | 154 case RegisterType.UNINIT:
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | TypeData.java | 944 return StackMapTable.UNINIT; in getTypeTag()
|
/external/e2fsprogs/doc/RelNotes/ |
D | v1.42.txt | 1325 ext2fs_open2() function clears the UNINIT bits to ensure all of the 1327 the UNINIT flags did not also recalculate the checksum, which produced 1329 resetting checksums when the UNINIT bits are cleared.
|