Searched refs:pointer (Results 151 - 175 of 3890) sorted by relevance

1234567891011>>

/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
H A DAndroid.mk31 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/pointer
32 test_src := pointer.pass.cpp
/external/libcxx/test/input.output/file.streams/fstreams/fstream.cons/
H A DAndroid.mk27 test_name := input.output/file.streams/fstreams/fstream.cons/pointer
28 test_src := pointer.pass.cpp
/external/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/
H A DAndroid.mk27 test_name := input.output/file.streams/fstreams/ifstream.cons/pointer
28 test_src := pointer.pass.cpp
/external/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
H A DAndroid.mk27 test_name := input.output/file.streams/fstreams/ofstream.cons/pointer
28 test_src := pointer.pass.cpp
/external/libcxx/test/iterators/iterator.primitives/iterator.traits/
H A DAndroid.mk23 test_name := iterators/iterator.primitives/iterator.traits/pointer
24 test_src := pointer.pass.cpp
/external/libcxx/test/strings/basic.string/string.modifiers/string_op_plus_equal/
H A DAndroid.mk27 test_name := strings/basic.string/string.modifiers/string_op_plus_equal/pointer
28 test_src := pointer.pass.cpp
/external/libcxx/test/strings/basic.string/string.ops/string_compare/
H A DAndroid.mk27 test_name := strings/basic.string/string.ops/string_compare/pointer
28 test_src := pointer.pass.cpp
/external/libunwind/doc/
H A Dunw_get_accessors.tex8 \begin{Name}{3}{unw\_get\_accessors}{David Mosberger-Tang}{Programming Library}{unw\_get\_accessors}unw\_get\_accessors -- get pointer to accessor call-backs
19 The \Func{unw\_get\_accessors}() routine returns a pointer to a
22 (see \Func{unw\_create\_addr\_space}(3)). The returned pointer is
33 returns a valid (non-\Const{NULL}) pointer to an
/external/llvm/include/llvm/Analysis/
H A DConstantsScanner.h54 inline pointer operator*() const {
58 inline pointer operator->() const { return operator*(); }
/external/chromium_org/third_party/libsrtp/srtp/crypto/hash/
H A Dhmac.c59 uint8_t *pointer; local
76 pointer = (uint8_t*)crypto_alloc(sizeof(hmac_ctx_t) + sizeof(auth_t));
77 if (pointer == NULL)
81 *a = (auth_t *)pointer;
83 (*a)->state = pointer + sizeof(auth_t);
243 NULL /* pointer to next testcase */
/external/srtp/crypto/hash/
H A Dhmac.c59 uint8_t *pointer; local
76 pointer = (uint8_t*)crypto_alloc(sizeof(hmac_ctx_t) + sizeof(auth_t));
77 if (pointer == NULL)
81 *a = (auth_t *)pointer;
83 (*a)->state = pointer + sizeof(auth_t);
243 NULL /* pointer to next testcase */
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Ddynamic_annotations.h74 latter when they share the same argument pointer.
127 /* Report that the bytes in the range [pointer, pointer+size) are about
129 arc from the call ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) to
134 #define ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) \
135 AnnotatePublishMemoryRange(__FILE__, __LINE__, pointer, size)
138 #define ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, size) \
139 AnnotateUnpublishMemoryRange(__FILE__, __LINE__, pointer, size)
142 #define ANNOTATE_SWAP_MEMORY_RANGE(pointer, size) \
144 ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, siz
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Ddynamic_annotations.h74 latter when they share the same argument pointer.
127 /* Report that the bytes in the range [pointer, pointer+size) are about
129 arc from the call ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) to
134 #define ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) \
135 AnnotatePublishMemoryRange(__FILE__, __LINE__, pointer, size)
138 #define ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, size) \
139 AnnotateUnpublishMemoryRange(__FILE__, __LINE__, pointer, size)
142 #define ANNOTATE_SWAP_MEMORY_RANGE(pointer, size) \
144 ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, siz
[all...]
/external/llvm/test/MC/ARM/
H A Deh-directive-setfp.s6 @ The .setfp directive will track the offset between the frame pointer and
7 @ the stack pointer. This is required for the function that will change
8 @ the stack pointer out of the function prologue. If the exception is thrown,
9 @ then libunwind will reconstruct the stack pointer from the frame pointer.
43 @ The assembler should emit 0x9B to copy stack pointer from r11.
85 @ The assembler should emit 0x9B to copy stack pointer from r11.
128 @ The assembler should emit 0x9B to copy stack pointer from r11.
171 @ The assembler should emit 0x9B to copy stack pointer from r11.
229 @ The assembler should emit 0x9B to copy stack pointer fro
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dpycapsule.pxd12 # pointer) through Python code to other C code. It is often used
13 # to make a C function pointer defined in one module available to
29 object PyCapsule_New(void *pointer, char *name,
33 # Create a PyCapsule encapsulating the pointer. The pointer
38 # The name string may either be NULL or a pointer to a valid C
53 # Retrieve the pointer stored in the capsule. On failure, set an
92 # non-NULL pointer stored in it, and its internal name matches the
104 int PyCapsule_SetPointer(object capsule, void *pointer) except -1
105 # Set the void pointer insid
[all...]
/external/pcre/dist/
H A Dpcregexp.pas259 DefaultLocaleTable : pointer = nil;
269 study_data : pointer; { Opaque data from pcre_study() }
271 callout_data : pointer; { Data passed back in callouts }
272 tables : pointer; { Pointer to character tables }
281 offset_vector : pointer;
285 callout_data : pointer;
295 function pcre_malloc( size : integer ) : pointer;
296 procedure pcre_free( {var} p : pointer );
298 const pcre_stack_malloc: function ( size : integer ): pointer = pcre_malloc;
299 pcre_stack_free: procedure ( {var} p : pointer )
[all...]
/external/chromium_org/mojo/system/
H A Dmemory.h47 // Checks (insofar as appropriate/possible) that |pointer| is a valid pointer to
50 void MOJO_SYSTEM_IMPL_EXPORT CheckUserPointer(const void* pointer);
52 // Checks (insofar as appropriate/possible) that |pointer| is a valid pointer to
56 CheckUserPointerWithCount(const void* pointer, size_t count);
58 // Checks (insofar as appropriate/possible) that |pointer| is a valid pointer to
62 CheckUserPointerWithSize(const void* pointer, size_t size);
79 // Represents a user pointer t
95 UserPointer(Type* pointer) argument
264 MakeUserPointer(Type* pointer) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dulist.c126 const UListNode *pointer = NULL; local
129 pointer = list->head;
131 while (pointer != NULL) {
132 if (length == uprv_strlen(pointer->data)) {
133 if (uprv_memcmp(data, pointer->data, length) == 0) {
139 pointer = pointer->next;
H A Dunistr_case.cpp56 // get the correct pointer
96 // This is very similar to how doReplace() keeps the old array pointer
157 const UnicodeString *str = (const UnicodeString*) key.pointer;
171 const UnicodeString *str1 = (const UnicodeString*) key1.pointer;
172 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
/external/icu/icu4c/source/common/
H A Dulist.c126 const UListNode *pointer = NULL; local
129 pointer = list->head;
131 while (pointer != NULL) {
132 if (length == uprv_strlen(pointer->data)) {
133 if (uprv_memcmp(data, pointer->data, length) == 0) {
139 pointer = pointer->next;
H A Dunistr_case.cpp56 // get the correct pointer
96 // This is very similar to how doReplace() keeps the old array pointer
157 const UnicodeString *str = (const UnicodeString*) key.pointer;
171 const UnicodeString *str1 = (const UnicodeString*) key1.pointer;
172 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DVertexArray.cpp77 bool normalized, bool pureInteger, GLsizei stride, const void *pointer)
86 mVertexAttributes[attributeIndex].pointer = pointer;
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dprivate.h179 void * irealloc(void * pointer, int size);
180 void icfree(char * pointer);
181 void ifree(char * pointer);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A Dneteq_isac_quality_test.cc136 int pointer = 0; local
137 for (int idx = 0; idx < subblocks; idx++, pointer += subblock_length) {
141 value = WebRtcIsacfix_Encode(isac_encoder_, &in_data[pointer], payload);
/external/icu/icu4c/source/tools/tzcode/
H A Dprivate.h179 void * irealloc(void * pointer, int size);
180 void icfree(char * pointer);
181 void ifree(char * pointer);

Completed in 2238 milliseconds

1234567891011>>