HomeSort by relevance Sort by last modified time
    Searched refs:ptr (Results 1 - 25 of 4625) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
annotate-tokens-preamble.c 3 void f(void *ptr) {
13 // CHECK: Keyword: "void" [3:8 - 3:12] ParmDecl=ptr:3:14 (Definition)
14 // CHECK: Punctuation: "*" [3:13 - 3:14] ParmDecl=ptr:3:14 (Definition)
15 // CHECK: Identifier: "ptr" [3:14 - 3:17] ParmDecl=ptr:3:14 (Definition)
  /external/clang/test/SemaCXX/
new-delete-predefined-decl-2.cpp 6 void f0(int *ptr) {
8 operator delete(ptr);
12 void f1(int *ptr) {
13 ::operator delete[](ptr);
err_reference_bind_drops_quals.cpp 4 typedef int* ptr; typedef
5 void test1(ptr p, const ptr cp, restrict ptr rp, const restrict ptr crp,
6 volatile ptr vp, const volatile ptr cvp, restrict volatile ptr rvp,
7 const restrict volatile ptr crvp) {
8 ptr& p1 = p
    [all...]
  /external/clang/test/CodeGen/
2007-02-07-AddrLabel.c 5 void *ptr; local
7 ptr = &&label;
9 goto *ptr;
2007-02-16-VoidPtrDiff.c 3 void foo(void *ptr, int test) {
4 (ptr - ((void *) test + 0x2000));
arm-clear.c 4 void clear(void *ptr, void *ptr2) {
8 __clear_cache(ptr, ptr2);
  /bionic/libc/arch-arm/bionic/
atomics_arm.c 61 __atomic_cmpxchg(int old, int _new, volatile int *ptr)
64 return __sync_val_compare_and_swap(ptr, old, _new) != old;
68 __atomic_swap(int _new, volatile int *ptr)
72 prev = *ptr;
73 } while (__sync_val_compare_and_swap(ptr, prev, _new) != prev);
78 __atomic_dec(volatile int *ptr)
80 return __sync_fetch_and_sub (ptr, 1);
84 __atomic_inc(volatile int *ptr)
86 return __sync_fetch_and_add (ptr, 1);
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-1.h 1 void f1(int *ptr); // expected-warning{{pointer is missing a nullability type specifier}}
7 void f3(int *ptr) { // expected-warning{{pointer is missing a nullability type specifier}}
8 int *other = ptr; // shouldn't warn
12 void mf(int *ptr); // expected-warning{{pointer is missing a nullability type specifier}}
  /external/deqp/external/vulkancts/framework/vulkan/
vkStrUtil.cpp 31 const char* ptr; member in struct:vk::CharPtr
33 CharPtr (const char* ptr_) : ptr(ptr_) {}
36 std::ostream& operator<< (std::ostream& str, const CharPtr& ptr)
38 if (!ptr.ptr)
41 return str << '"' << ptr.ptr << '"';
44 inline CharPtr getCharPtrStr (const char* ptr)
46 return CharPtr(ptr);
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
egl_dispatch.cpp 24 void *ptr; local
25 ptr = dlsym(gles_android,"eglGetError"); disp->set_eglGetError((eglGetError_t)ptr);
26 ptr = dlsym(gles_android,"eglGetDisplay"); disp->set_eglGetDisplay((eglGetDisplay_t)ptr);
27 ptr = dlsym(gles_android,"eglInitialize"); disp->set_eglInitialize((eglInitialize_t)ptr);
28 ptr = dlsym(gles_android,"eglTerminate"); disp->set_eglTerminate((eglTerminate_t)ptr);
29 ptr = dlsym(gles_android,"eglQueryString"); disp->set_eglQueryString((eglQueryString_t)ptr)
    [all...]
gles_dispatch.cpp 24 void *ptr; local
25 ptr = dlsym(gles_android,"glAlphaFunc"); disp->set_glAlphaFunc((glAlphaFunc_t)ptr);
26 ptr = dlsym(gles_android,"glClearColor"); disp->set_glClearColor((glClearColor_t)ptr);
27 ptr = dlsym(gles_android,"glClearDepthf"); disp->set_glClearDepthf((glClearDepthf_t)ptr);
28 ptr = dlsym(gles_android,"glClipPlanef"); disp->set_glClipPlanef((glClipPlanef_t)ptr);
29 ptr = dlsym(gles_android,"glColor4f"); disp->set_glColor4f((glColor4f_t)ptr)
    [all...]
  /development/vndk/tools/header-checker/src/utils/
stl_utils.h 25 inline void operator()(void *ptr) const {
26 ::free(ptr);
  /external/clang/test/CodeGenCXX/
aarch64-neon.cpp 11 poly64x1_t test_vld1_p64(poly64_t const * ptr) {
13 return vld1_p64(ptr);
  /external/clang/test/Index/Inputs/
preamble.h 2 int *ptr = 0; local
4 ptr = ptr1;
  /external/clang/tools/scan-build-py/tests/functional/src/
emit-two.c 10 int * ptr = 0; local
12 bad_guy(ptr);
  /external/compiler-rt/test/asan/TestCases/Windows/
null_deref.cc 6 static void NullDeref(int *ptr) {
9 ptr[10]++; // BOOM
intercept_strdup.cc 9 char *ptr = _strdup("Hello"); local
11 ptr[subscript] = '3';
12 printf("%s\n", ptr);
17 ptr[subscript] = 42;
31 free(ptr);
  /external/compiler-rt/test/asan/TestCases/
null_deref.cc 12 void NullDeref(int *ptr) {
15 ptr[10]++; // BOOM
  /external/curl/lib/
strtok.c 31 Curl_strtok_r(char *ptr, const char *sep, char **end)
33 if(!ptr)
35 ptr = *end;
38 while(*ptr && strchr(sep, *ptr))
39 ++ptr;
41 if(*ptr) {
43 char *start = ptr;
curl_multibyte.h 62 #define Curl_convert_UTF8_to_tchar(ptr) Curl_convert_UTF8_to_wchar((ptr))
63 #define Curl_convert_tchar_to_UTF8(ptr) Curl_convert_wchar_to_UTF8((ptr))
64 #define Curl_unicodefree(ptr) \
65 do {if((ptr)) {free((ptr)); (ptr) = NULL;}} WHILE_FALSE
76 #define Curl_convert_UTF8_to_tchar(ptr) (ptr)
    [all...]
  /external/tensorflow/tensorflow/lite/toco/
toco_graphviz_dump_options.cc 19 static auto* ptr = new GraphVizDumpOptions; local
20 return ptr;
  /external/selinux/libselinux/src/
freeconary.c 8 char **ptr; local
13 for (ptr = con; *ptr; ptr++) {
14 free(*ptr);
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_describe.c 33 debug_describe_reference(char* buf, UNUSED const struct pipe_reference*ptr)
39 debug_describe_resource(char* buf, const struct pipe_resource *ptr)
41 switch(ptr->target)
44 util_sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
47 util_sprintf(buf, "pipe_texture1d<%u,%s,%u>", ptr->width0, util_format_short_name(ptr->format), ptr->last_level);
50 util_sprintf(buf, "pipe_texture2d<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level)
    [all...]
  /external/pdfium/core/fxcrt/
fx_memory_unittest.cpp 26 int* ptr = FX_Alloc(int, 1); local
27 EXPECT_TRUE(ptr);
28 EXPECT_DEATH_IF_SUPPORTED((void)FX_Realloc(int, ptr, kMaxIntAlloc), "");
29 FX_Free(ptr);
33 // |ptr| needs to be defined and used to avoid Clang optimizes away the
35 int* ptr = nullptr; local
36 EXPECT_DEATH_IF_SUPPORTED(ptr = FX_Alloc(int, kOverflowIntAlloc), "") << ptr;
38 ptr = FX_Alloc(int, 1);
39 EXPECT_TRUE(ptr);
47 int* ptr = nullptr; local
56 int* ptr = FX_Alloc(int, 1); local
65 int* ptr = (int*)calloc(sizeof(int), kOverflowIntAlloc); local
77 void* ptr = FXMEM_DefaultAlloc(1); local
    [all...]
  /external/virglrenderer/src/gallium/auxiliary/util/
u_debug_describe.c 33 debug_describe_reference(char* buf, UNUSED const struct pipe_reference*ptr)
39 debug_describe_resource(char* buf, const struct pipe_resource *ptr)
41 switch(ptr->target)
44 util_sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
47 util_sprintf(buf, "pipe_texture1d<%u,%s,%u>", ptr->width0, util_format_short_name(ptr->format), ptr->last_level);
50 util_sprintf(buf, "pipe_texture2d<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level)
    [all...]

Completed in 733 milliseconds

1 2 3 4 5 6 7 8 91011>>