/external/clang/test/Index/ |
H A D | annotate-tokens-preamble.c | 3 void f(void *ptr) { argument 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/ |
H A D | new-delete-predefined-decl-2.cpp | 6 void f0(int *ptr) { argument 8 operator delete(ptr); 12 void f1(int *ptr) { argument 13 ::operator delete[](ptr);
|
H A D | 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 [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/d3d11/ |
H A D | d3d11.spec | 5 @ stdcall D3D11CreateDevice(ptr long ptr long ptr long long ptr ptr ptr) 6 @ stdcall D3D11CreateDeviceAndSwapChain(ptr long ptr long ptr long long ptr pt [all...] |
/external/clang/test/CodeGen/ |
H A D | 2007-02-07-AddrLabel.c | 5 void *ptr; local 7 ptr = &&label; 9 goto *ptr;
|
H A D | 2007-02-16-VoidPtrDiff.c | 3 void foo(void *ptr, int test) { argument 4 (ptr - ((void *) test + 0x2000));
|
H A D | arm-clear.c | 4 void clear(void *ptr, void *ptr2) { argument 8 __clear_cache(ptr, ptr2);
|
/external/clang/test/SemaObjCXX/Inputs/ |
H A D | 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}} argument 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/ |
H A D | 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) argument 38 if (!ptr.ptr) 41 return str << '"' << ptr.ptr << '"'; 44 inline CharPtr getCharPtrStr (const char* ptr) argument 46 return CharPtr(ptr);
|
/external/clang/test/CodeGenCXX/ |
H A D | aarch64-neon.cpp | 11 poly64x1_t test_vld1_p64(poly64_t const * ptr) { argument 13 return vld1_p64(ptr);
|
/external/clang/test/Index/Inputs/ |
H A D | preamble.h | 2 int *ptr = 0; local 4 ptr = ptr1;
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
H A D | null_deref.cc | 6 static void NullDeref(int *ptr) { argument 9 ptr[10]++; // BOOM
|
H A D | oom.cc | 8 void *ptr = malloc(200 * 1024 * 1024); // 200MB local 9 free(ptr);
|
H A D | intercept_strdup.cc | 9 char *ptr = _strdup("Hello"); local 11 ptr[subscript] = '3'; 12 printf("%s\n", ptr); 17 ptr[subscript] = 42; 27 free(ptr);
|
/external/compiler-rt/test/asan/TestCases/ |
H A D | null_deref.cc | 12 void NullDeref(int *ptr) { argument 15 ptr[10]++; // BOOM
|
/external/curl/lib/ |
H A D | strtok.c | 31 Curl_strtok_r(char *ptr, const char *sep, char **end) argument 33 if(!ptr) 35 ptr = *end; 38 while(*ptr && strchr(sep, *ptr)) 39 ++ptr; 41 if(*ptr) { 43 char *start = ptr;
|
H A D | 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/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/ |
H A D | dxgi.spec | 1 @ stdcall CreateDXGIFactory(ptr ptr) 2 @ stdcall CreateDXGIFactory1(ptr ptr)
|
/external/valgrind/none/tests/linux/ |
H A D | brk-overflow1.c | 3 volatile void *ptr; variable 9 ptr = sbrk(9*1024*1024);
|
/external/selinux/libselinux/src/ |
H A D | freeconary.c | 8 char **ptr; local 13 for (ptr = con; *ptr; ptr++) { 14 free(*ptr);
|
/external/fio/ |
H A D | err.h | 21 static inline uintptr_t PTR_ERR(const void *ptr) argument 23 return (uintptr_t) ptr; 26 static inline uintptr_t IS_ERR(const void *ptr) argument 28 return IS_ERR_VALUE((uintptr_t)ptr); 31 static inline uintptr_t IS_ERR_OR_NULL(const void *ptr) argument 33 return !ptr || IS_ERR_VALUE((uintptr_t)ptr); 36 static inline int PTR_ERR_OR_ZERO(const void *ptr) argument 38 if (IS_ERR(ptr)) 39 return PTR_ERR(ptr); [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/d3d10/ |
H A D | d3d10.spec | 3 @ stdcall D3D10CreateBlob(long ptr) 4 @ stdcall D3D10CreateDevice(ptr long ptr long long ptr) 5 @ stdcall D3D10CreateDeviceAndSwapChain(ptr long ptr long long ptr ptr ptr) 11 @ stdcall D3D10GetGeometryShaderProfile(ptr) [all...] |
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
H A D | warp_reduce.hpp | 55 __device__ __forceinline__ T warp_reduce(volatile T *ptr , const unsigned int tid = threadIdx.x) 61 T partial = ptr[tid]; 63 ptr[tid] = partial = partial + ptr[tid + 16]; 64 ptr[tid] = partial = partial + ptr[tid + 8]; 65 ptr[tid] = partial = partial + ptr[tid + 4]; 66 ptr[tid] = partial = partial + ptr[ti [all...] |
/external/opencv3/modules/features2d/src/ |
H A D | agast.cpp | 101 register const unsigned char* const ptr = img.ptr() + y*width + x; local 102 register const int cb = *ptr + threshold; 103 register const int c_b = *ptr - threshold; 104 if(ptr[offset0] > cb) 105 if(ptr[offset2] > cb) 106 if(ptr[offset3] > cb) 107 if(ptr[offset5] > cb) 108 if(ptr[offset1] > cb) 109 if(ptr[offset 437 register const unsigned char* const ptr = img.ptr() + y*width + x; local 865 register const unsigned char* const ptr = img.ptr() + y*width + x; local 2047 register const unsigned char* const ptr = img.ptr() + y*width + x; local 3309 register const unsigned char* const ptr = img.ptr() + y*width + x; local 4347 register const unsigned char* const ptr = img.ptr() + y*width + x; local 5392 register const unsigned char* const ptr = img.ptr() + y*width + x; local [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_debug_describe.c | 33 debug_describe_reference(char* buf, const struct pipe_reference*ptr) 39 debug_describe_resource(char* buf, const struct pipe_resource *ptr) argument 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 68 debug_describe_surface(char* buf, const struct pipe_surface *ptr) argument 76 debug_describe_sampler_view(char* buf, const struct pipe_sampler_view *ptr) argument 84 debug_describe_so_target(char* buf, const struct pipe_stream_output_target *ptr) argument [all...] |