Home
last modified time | relevance | path

Searched refs:pointers (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/external/boringssl/src/crypto/
Dthread_pthread.c96 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 …]
Dthread_win.c162 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/
Dmisc.c42 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/
Des3fShaderStateQueryTests.cpp2179 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/
Des2fShaderStateQueryTests.cpp1522 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/
Daddress-spaces-conversions-cl2.0.cl5 /* 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 …]
Dinvalid-kernel-parameters.cl30 …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/
Dasan_interface_test.cc415 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()
Dasan_mac_test.cc141 void *pointers[kNumPointers]; in MallocIntrospectionLockWorker() local
143 pointers[i] = malloc(i + 1); in MallocIntrospectionLockWorker()
146 free(pointers[i]); in MallocIntrospectionLockWorker()
/external/opencv/cvaux/src/
Dcvhmm1d.cpp216 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/
D2002-06-25-MegaPatchInfo.txt18 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.
D2001-02-06-TypeNotationDebateResp4.txt21 > > 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
D2001-02-06-TypeNotationDebateResp1.txt28 > 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
D2001-02-13-Reference-MemoryResponse.txt9 > 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/
Dlens_default.c280 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/
DLexicon.rst63 .. _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/
Ddeprecated-objc-introspection.m92 // 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/
Dmultilevel.ll2 ; pointers in pointers appropriately.
/external/antlr/antlr-3.4/runtime/C/doxygen/
Ddoxygengroups.dox11 /// 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/
DREADME.portability38 * 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/
Dminidump_generator.cc206 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/
D2009-09-24-byval-ptr.ll2 ; Don't constant-propagate byval pointers, since they are not pointers!
/external/llvm/test/Analysis/ScalarEvolution/
Dscev-aa.ll12 ; 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/
Dlsan_flags.inc40 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/
DAMDILBase.td48 "assert that all kernel argument pointers are not aliased">;
62 "Specify if 64bit sized pointers with 32bit addressing should be used.">;

12345678910>>...14