/external/libunwind_llvm/src/ |
DwarfInstructions.hpp | 252 // pop stack, dereference, push result 256 fprintf(stderr, "dereference 0x%" PRIx64 "\n", (uint64_t)value); 400 // pop stack, dereference, push result 404 fprintf(stderr, "x-dereference 0x%" PRIx64 "\n", (uint64_t)value); 716 // pop stack, dereference, push result 736 fprintf(stderr, "sized dereference 0x%" PRIx64 "\n", (uint64_t)value);
|
/external/clang/test/Analysis/ |
edges-new.mm | 148 *p = 0xDEADBEEF; // expected-warning {{dereference}} 720 // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 722 // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 725 // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'p')</string> 727 // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 900 // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 902 // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 905 // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'p')</string> 907 // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> [all...] |
misc-ps.m | 2 // RUN: %clang_cc1 -triple i386-apple-darwin10 -analyze -analyzer-checker=core,alpha.core,osx.cocoa.AtSync -analyzer-store=region -analyzer-constraints=range -verify -fblocks -Wno-unreachable-code -Wno-null-dereference -Wno-objc-root-class %s 3 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,alpha.core,osx.cocoa.AtSync -analyzer-store=region -analyzer-constraints=range -verify -fblocks -Wno-unreachable-code -Wno-null-dereference -Wno-objc-root-class %s 149 *p = 0xDEADBEEF; // expected-warning{{Dereference of undefined pointer value}} 259 *p = 1; // expected-warning{{Dereference of null pointer}} 416 // <rdar://problem/7062158> false positive null dereference due to 631 *p = 0xDEADBEEF; // expected-warning{{Dereference of null pointer}} 885 // Not a null dereference. 959 if (1 && *({ // expected-warning{{Dereference of null pointer}} 1096 *p = 0xDEADBEEF; // expected-warning{{Dereference of null pointer}} 1129 // <rdar://problem/6352035> rule request: direct structure member access null pointer dereference [all...] |
/external/gemmlowp/meta/generators/ |
neon_emitter.py | 649 self.Dereference(destination, None), offset) 652 self.Dereference(destination, None), offset) 658 self.Dereference(destination, None), offset) 662 self.Dereference(destination, None), offset) 722 input_deref = self.Dereference(input_address, None) 810 def Dereference(self, value, alignment=None): 817 return '%s!' % self.Dereference(value, alignment)
|
/external/mesa3d/src/compiler/glsl/ |
lower_shared_reference.cpp | 148 * dereference, walk over the type and emit loads into a temporary. 359 /* Compute the offset to the start if the dereference 489 * of an shared variable array using a shared variable dereference as the
|
lower_mat_op_to_vec.cpp | 344 * not a dereference. 351 /* Note that we use this dereference for the assignment. That means
|
/external/valgrind/memcheck/tests/amd64/ |
bt_everything.c | 38 /* Pretty meaningless to dereference base here, but that's what you 89 /* Pretty meaningless to dereference base here, but that's what you 141 /* Pretty meaningless to dereference base here, but that's what you
|
/external/wpa_supplicant_8/src/utils/ |
radiotap.c | 84 * get_unaligned((type *)iterator.this_arg) to dereference 230 * get_unaligned((type *)iterator.this_arg) to dereference 294 * The above is why get_unaligned() is used to dereference
|
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ |
propagateNoContraction.cpp | 351 // A unary node is not a dereference node, so we clear the access chain which 401 // For a dereference node, there is no need to traverse the right child 568 // Visits a binary node. If the node is an object node, it must be a dereference 580 // A binary object node must be a dereference node. 671 // Gets the struct dereference index that leads to 'precise' object. 692 // Visits a binary node. A binary node can be an object node, e.g. a dereference node. [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Variable.java | 193 * Dereference the variable, and return the reference value. Note that lazy 258 * @return The dereference to the ElemVariable, or null if not found.
|
/external/clang/test/Sema/ |
asm.c | 133 __asm("": : "a"(*s)); // expected-error {{dereference of pointer to incomplete type 'struct S'}} 134 __asm("": "=a" (*s) :); // expected-error {{dereference of pointer to incomplete type 'struct S'}}
|
/external/clang/www/analyzer/ |
faq.html | 26 <li><a href="#null_pointer">The analyzer reports a null dereference, but I know that the 55 <h4 id="null_pointer" class="faq">Q: The analyzer reports a null dereference, but I know that the
|
/external/icu/icu4c/source/i18n/ |
timezone.cpp | 265 * Dereference aliases if necessary. 282 // Dereference if this is an alias. Docs say result should be 1 288 UResourceBundle *ares = ures_getByKey(top, kZONES, NULL, &ec); // dereference Zones section 597 res = ures_getByKey(res, kNAMES, res, &ec); // dereference Zones section 747 top = ures_getByKey(top, kNAMES, top, &ec); // dereference Zones section 823 res = ures_getByKey(res, kNAMES, res, &ec); // dereference Zones section [all...] |
/external/mesa3d/docs/relnotes/ |
9.1.3.html | 149 <li>mesa: NULL check the pointer before trying to dereference it</li> 155 <li>intel: Don't dereference a NULL pointer of calloc fails</li>
|
/external/mesa3d/src/compiler/nir/ |
nir_split_var_copies.c | 60 * dereference pointing to a single leaf in the structure type tree with 97 /* Make a wildcard dereference */
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 159 /// boundaries. The resulting iterator will dereference (and have a handle) 275 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 159 /// boundaries. The resulting iterator will dereference (and have a handle) 275 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/ |
MachineInstrBundleIterator.h | 165 /// boundaries. The resulting iterator will dereference (and have a handle) 281 /// Gives a reverse iterator that will dereference (and have a handle) to the
|