/external/boringssl/src/crypto/ |
D | thread_pthread.c | 96 void **pointers = arg; in thread_local_destructor() local 99 destructors[i](pointers[i]); in thread_local_destructor() 103 OPENSSL_free(pointers); in thread_local_destructor() 121 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_get_thread_local() local 122 if (pointers == NULL) { in CRYPTO_get_thread_local() 125 return pointers[index]; in CRYPTO_get_thread_local() 136 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_set_thread_local() local 137 if (pointers == NULL) { in CRYPTO_set_thread_local() 138 pointers = OPENSSL_malloc(sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS); in CRYPTO_set_thread_local() 139 if (pointers == NULL) { in CRYPTO_set_thread_local() [all …]
|
D | thread_win.c | 162 void **pointers = (void**) TlsGetValue(g_thread_local_key); in thread_local_destructor() local 163 if (pointers == NULL) { in thread_local_destructor() 176 destructors[i](pointers[i]); in thread_local_destructor() 180 OPENSSL_free(pointers); in thread_local_destructor() 244 void **pointers = TlsGetValue(g_thread_local_key); in CRYPTO_get_thread_local() local 245 if (pointers == NULL) { in CRYPTO_get_thread_local() 248 return pointers[index]; in CRYPTO_get_thread_local() 259 void **pointers = TlsGetValue(g_thread_local_key); in CRYPTO_set_thread_local() local 260 if (pointers == NULL) { in CRYPTO_set_thread_local() 261 pointers = OPENSSL_malloc(sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS); in CRYPTO_set_thread_local() [all …]
|
/external/tremolo/Tremolo/ |
D | misc.c | 42 static void **pointers=NULL; variable 72 if(pointers){ in _insert() 73 pointers=(void **)realloc(pointers,sizeof(void **)*palloced); in _insert() 76 pointers=(void **)malloc(sizeof(void **)*palloced); in _insert() 81 pointers[pinsert]=ptr; in _insert() 186 if(pointers[insert]==NULL){ in _ripremove() 195 pointers[insert]=NULL; in _ripremove() 201 head *ptr=pointers[i]; in _VDBG_dump()
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderStateQueryTests.cpp | 2179 const PointerData pointers[] = in test() local 2196 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(pointers); ++ndx) in test() 2198 …glVertexAttribPointer(0, pointers[ndx].size, pointers[ndx].type, pointers[ndx].normalized, pointer… in test() 2201 verifyVertexAttrib(m_testCtx, *this, 0, GL_VERTEX_ATTRIB_ARRAY_SIZE, pointers[ndx].size); in test() 2223 …glVertexAttribPointer(0, pointers[0].size, pointers[0].type, pointers[0].normalized, pointers[0].s… in test() 2228 …glVertexAttribPointer(0, pointers[1].size, pointers[1].type, pointers[1].normalized, pointers[1].s… in test() 2232 verifyVertexAttrib(m_testCtx, *this, 0, GL_VERTEX_ATTRIB_ARRAY_SIZE, pointers[1].size); in test() 2237 verifyVertexAttrib(m_testCtx, *this, 0, GL_VERTEX_ATTRIB_ARRAY_SIZE, pointers[0].size); in test() 2265 const PointerData pointers[] = in test() local 2280 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(pointers); ++ndx) in test() [all …]
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderStateQueryTests.cpp | 1522 const PointerData pointers[] = in test() local 1535 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(pointers); ++ndx) in test() 1537 …glVertexAttribPointer(0, pointers[ndx].size, pointers[ndx].type, pointers[ndx].normalized, pointer… in test() 1540 verifyVertexAttrib(m_testCtx, *this, 0, GL_VERTEX_ATTRIB_ARRAY_SIZE, pointers[ndx].size); in test() 1557 const PointerData pointers[] = in test() local 1567 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(pointers); ++ndx) in test() 1569 …glVertexAttribPointer(0, pointers[ndx].size, pointers[ndx].type, pointers[ndx].normalized, pointer… in test() 1572 verifyVertexAttrib(m_testCtx, *this, 0, GL_VERTEX_ATTRIB_ARRAY_TYPE, pointers[ndx].type); in test() 1599 const StridePointerData pointers[] = in test() local 1618 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(pointers); ++ndx) in test() [all …]
|
/external/clang/test/SemaOpenCL/ |
D | address-spaces-conversions-cl2.0.cl | 5 /* OpenCLC v2.0 adds a set of restrictions for conversions between pointers to 10 * generic address space can be interchangabley used with pointers to any 160 …comparison between ('__constant int *' and '__global int *') which are pointers to non-overlappin… 165 … between ('__{{global|constant}} int *' and '__local int *') which are pointers to non-overlappin… 170 …etween ('__{{global|generic}} int *' and '__constant int *') which are pointers to non-overlappin… 175 …mparison between ('__{{global|constant}} int *' and 'int *') which are pointers to non-overlappin… 180 …omparison between ('__constant int *' and '__generic int *') which are pointers to non-overlappin… 186 …h operands of type ('__constant int *' and '__global int *') which are pointers to non-overlappin… 191 … of type ('__{{global|constant}} int *' and '__local int *') which are pointers to non-overlappin… 196 …f type ('__{{global|generic}} int *' and '__constant int *') which are pointers to non-overlappin… [all …]
|
D | invalid-kernel-parameters.cl | 30 …ruct_arg(FooImage2D arg) { } // expected-error{{struct kernel parameters may not contain pointers}} 37 …r_in_struct_arg(Foo arg) { } // expected-error{{struct kernel parameters may not contain pointers}} 44 …in_union_arg(FooUnion arg) { }// expected-error{{union kernel parameters may not contain pointers}} 55 …ct_arg(NestedPointer arg) { }// expected-error{{struct kernel parameters may not contain pointers}} 72 …NestedPointerComplex arg) { }// expected-error{{struct kernel parameters may not contain pointers}} 132 …struct AlsoUser also) { } // expected-error 2 {{struct kernel parameters may not contain pointers}}
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_interface_test.cc | 415 std::vector<char *> pointers; in TEST() local 420 pointers.push_back((char*)malloc(size)); in TEST() 424 EXPECT_FALSE(__sanitizer_get_ownership(&pointers)); in TEST() 427 EXPECT_TRUE(__sanitizer_get_ownership(pointers[idx])); in TEST() 428 EXPECT_EQ(sizes[idx], __sanitizer_get_allocated_size(pointers[idx])); in TEST() 430 for (size_t i = 0, n = pointers.size(); i < n; i++) in TEST() 431 free(pointers[i]); in TEST()
|
D | asan_mac_test.cc | 141 void *pointers[kNumPointers]; in MallocIntrospectionLockWorker() local 143 pointers[i] = malloc(i + 1); in MallocIntrospectionLockWorker() 146 free(pointers[i]); in MallocIntrospectionLockWorker()
|
/external/opencv/cvaux/src/ |
D | cvhmm1d.cpp | 216 float* pointers; 240 pointers = (float*)icvAlloc( total_mix * (2/*for mu invvar */ * obs_size + 246 all_states[i].mu = pointers; pointers += num_mix[i] * obs_size; 247 all_states[i].inv_var = pointers; pointers += num_mix[i] * obs_size; 249 all_states[i].log_var_val = pointers; pointers += num_mix[i]; 250 all_states[i].weight = pointers; pointers += num_mix[i];
|
/external/llvm/docs/HistoricalNotes/ |
D | 2002-06-25-MegaPatchInfo.txt | 18 wrapper around a vector of pointers to the sub-objects. 20 Now, instead of having a vector to pointers of objects, the objects are 25 formed directly from pointers to the LLVM value, and invalidation is much 66 of pointers, and that Pass subclasses now all receive references to Values 67 instead of pointers, because they may never be null.
|
D | 2001-02-06-TypeNotationDebateResp4.txt | 21 > > that most programmers TODAY do not understand pointers to member 28 > In either case, I would have to look up an example to write pointers to 35 declare these pointers, and the syntax is inconsistent with the method 38 > But pointers to member functions are nowhere near as common as arrays. 64 > make function pointers easier but makes arrays much more difficult seems 67 This is not about function pointers. This is about consistency in the
|
D | 2001-02-06-TypeNotationDebateResp1.txt | 28 > that most programmers TODAY do not understand pointers to member 35 In either case, I would have to look up an example to write pointers to 38 But pointers to member functions are nowhere near as common as arrays. And 43 make function pointers easier but makes arrays much more difficult seems
|
D | 2001-02-13-Reference-MemoryResponse.txt | 9 > references: constrained pointers that cannot be manipulated: added and 14 > C++ pointers could be promoted to references in the LLVM 19 compiler could generate references instead of pointers with fairly
|
/external/ltrace/ |
D | lens_default.c | 280 static struct vect pointers = {}; in format_pointer() local 281 if (pointers.elt_size == 0) in format_pointer() 282 VECT_INIT(&pointers, struct value *); in format_pointer() 288 size_t len = vect_size(&pointers); in format_pointer() 295 = *VECT_ELEMENT(&pointers, struct value *, i); in format_pointer() 307 struct value **old = VECT_ELEMENT(&pointers, struct value *, i); in format_pointer() 321 if (VECT_PUSHBACK(&pointers, &value) < 0) in format_pointer() 334 VECT_POPBACK(&pointers, struct value *, NULL, NULL); in format_pointer()
|
/external/llvm/docs/ |
D | Lexicon.rst | 63 .. _derived pointers: 70 derived pointers pose an additional hazard that they may be invalidated at 148 .. _object pointers: 170 the pointers to point to the new value. See 200 `derived pointers`_ must not be retained across safe points and `object 201 pointers`_ must be reloaded from stack roots.
|
/external/clang/test/SemaObjC/ |
D | deprecated-objc-introspection.m | 92 // Test for introspection of Objective-C pointers via bitmasking. 95 …/ expected-warning {{bitmasking for introspection of Objective-C object pointers is strongly disco… 96 …/ expected-warning {{bitmasking for introspection of Objective-C object pointers is strongly disco… 99 …/ expected-warning {{bitmasking for introspection of Objective-C object pointers is strongly disco…
|
/external/llvm/test/Analysis/CFLAliasAnalysis/ |
D | multilevel.ll | 2 ; pointers in pointers appropriately.
|
/external/antlr/antlr-3.4/runtime/C/doxygen/ |
D | doxygengroups.dox | 11 /// The typedefs contain data and function pointers, which together define 24 /// and their pointers) are the C equivalent of objects. They correspond 26 /// data elements for a particular interface as well as all the pointers 32 /// function pointers, before using the interface 'object' you have created. 53 /// Some typedef structures contain either pointers to 'inherited' objects (usual) 54 /// or embedded structures/typedefs (unusual). In some cases, the pointers passed 55 /// around by the paresr or tree parser are actually the pointers to these embedded 57 /// pointers to their encapsulating objects. This is the equivalent of passing
|
/external/mesa3d/src/gallium/ |
D | README.portability | 38 * Use align_pointer() function defined in u_memory.h for aligning pointers 73 pointers to sub-class pointers where needed:
|
/external/google-breakpad/src/client/windows/crash_generation/ |
D | minidump_generator.cc | 206 EXCEPTION_POINTERS pointers; in ReadExceptionCode() local 209 &pointers, in ReadExceptionCode() 210 sizeof(pointers), in ReadExceptionCode() 216 pointers.ExceptionRecord, in ReadExceptionCode()
|
/external/llvm/test/Transforms/IPConstantProp/ |
D | 2009-09-24-byval-ptr.ll | 2 ; Don't constant-propagate byval pointers, since they are not pointers!
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | scev-aa.ll | 12 ; CHECK: Function: loop: 3 pointers, 0 call sites 38 ; CHECK: Function: nestedloop: 4 pointers, 0 call sites 96 ; CHECK: Function: nestedloop_more: 4 pointers, 0 call sites 152 ; CHECK: Function: foo: 7 pointers, 0 call sites 173 ; CHECK: Function: bar: 7 pointers, 0 call sites 193 ; CHECK: Function: nonnegative: 2 pointers, 0 call sites
|
/external/compiler-rt/lib/lsan/ |
D | lsan_flags.inc | 40 LSAN_FLAG(bool, use_unaligned, false, "Consider unaligned pointers valid.") 42 "Consider pointers found in poisoned memory to be valid.")
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILBase.td | 48 "assert that all kernel argument pointers are not aliased">; 62 "Specify if 64bit sized pointers with 32bit addressing should be used.">;
|