Searched refs:pointer (Results 51 - 75 of 3890) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/targets/xorg-i915/
H A Dintel_xorg.c96 static pointer
97 intel_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
111 return (pointer) 1;
/external/chromium_org/third_party/mesa/src/src/gallium/targets/xorg-r300/
H A Dxorg.c97 static pointer
98 r300_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
112 return (pointer) 1;
/external/chromium_org/third_party/mesa/src/src/gallium/targets/xorg-r600/
H A Dxorg.c97 static pointer
98 r600_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
112 return (pointer) 1;
/external/chromium_org/third_party/mesa/src/src/gallium/targets/xorg-radeonsi/
H A Dxorg.c97 static pointer
98 radeonsi_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
112 return (pointer) 1;
/external/icu/icu4c/source/tools/tzcode/
H A Dialloc.c36 irealloc(pointer, size)
37 void * const pointer;
40 if (pointer == NULL)
42 return realloc((void *) pointer, (size_t) nonzero(size));
/external/libcxx/test/containers/
H A Dstack_allocator.h23 typedef value_type* pointer; typedef in class:stack_allocator
39 pointer allocate(size_type n, const void* = 0)
48 pointer r = (T*)ptr_;
52 void deallocate(pointer p, size_type n)
/external/linux-tools-perf/perf-3.12.0/arch/frv/lib/
H A Dmemset.S172 # GR4 - memset's address tracking pointer
/external/mesa3d/src/gallium/targets/xorg-i915/
H A Dintel_xorg.c96 static pointer
97 intel_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
111 return (pointer) 1;
/external/mesa3d/src/gallium/targets/xorg-r300/
H A Dxorg.c97 static pointer
98 r300_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
112 return (pointer) 1;
/external/mesa3d/src/gallium/targets/xorg-r600/
H A Dxorg.c97 static pointer
98 r600_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
112 return (pointer) 1;
/external/mesa3d/src/gallium/targets/xorg-radeonsi/
H A Dxorg.c97 static pointer
98 radeonsi_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
112 return (pointer) 1;
/external/stlport/stlport/stl/
H A D_ptrs_specialize.h7 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
20 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(*(*this)); }
22 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { reference x = operator*(); return &x; }
24 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DObjectInputStreamInstantiator.java44 private int pointer; field in class:ObjectInputStreamInstantiator.MockStream
81 this.pointer = 0;
114 pointer = 0;
120 int result = data[pointer++];
121 if(pointer >= data.length) {
134 int remaining = data.length - pointer;
137 System.arraycopy(data, pointer, b, off, remaining);
141 remaining = data.length - pointer;
144 System.arraycopy(data, pointer, b, off, left);
145 pointer
[all...]
/external/chromium_org/mojo/public/cpp/system/
H A Dbuffer.h71 void** pointer,
74 return MojoMapBuffer(buffer.value(), offset, num_bytes, pointer, flags);
77 inline MojoResult UnmapBuffer(void* pointer) { argument
78 assert(pointer);
79 return MojoUnmapBuffer(pointer);
68 MapBuffer(BufferHandleType buffer, uint64_t offset, uint64_t num_bytes, void** pointer, MojoMapBufferFlags flags) argument
/external/openssl/crypto/
H A Dcryptlib.c187 static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
239 CRYPTO_dynlock *pointer = NULL; local
256 pointer = (CRYPTO_dynlock *)OPENSSL_malloc(sizeof(CRYPTO_dynlock));
257 if (pointer == NULL)
262 pointer->references = 1;
263 pointer->data = dynlock_create_callback(__FILE__,__LINE__);
264 if (pointer->data == NULL)
266 OPENSSL_free(pointer);
280 i=sk_CRYPTO_dynlock_push(dyn_locks,pointer) - 1;
282 /* If we found a place with a NULL pointer, pu
299 CRYPTO_dynlock *pointer = NULL; local
342 CRYPTO_dynlock *pointer = NULL; local
592 struct CRYPTO_dynlock_value *pointer local
607 CRYPTO_add_lock(int *pointer, int amount, int type, const char *file, int line) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duvector.cpp22 * or a pointer. If a hint bit is zero, then the associated
101 if (elements[i].pointer != 0 && deleter != 0) {
102 (*deleter)(elements[i].pointer);
127 elements[count++].pointer = obj;
133 elements[count].pointer = NULL; // Pointers may be bigger than ints.
141 if (elements[index].pointer != 0 && deleter != 0) {
142 (*deleter)(elements[index].pointer);
144 elements[index].pointer = obj;
151 if (elements[index].pointer != 0 && deleter != 0) {
153 (*deleter)(elements[index].pointer);
[all...]
/external/icu/icu4c/source/common/
H A Duvector.cpp22 * or a pointer. If a hint bit is zero, then the associated
101 if (elements[i].pointer != 0 && deleter != 0) {
102 (*deleter)(elements[i].pointer);
127 elements[count++].pointer = obj;
133 elements[count].pointer = NULL; // Pointers may be bigger than ints.
141 if (elements[index].pointer != 0 && deleter != 0) {
142 (*deleter)(elements[index].pointer);
144 elements[index].pointer = obj;
151 if (elements[index].pointer != 0 && deleter != 0) {
153 (*deleter)(elements[index].pointer);
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dring_buffer_test.cc150 void* pointer = allocator_->Alloc(kSize); local
151 EXPECT_GE(kBufferSize, allocator_->GetOffset(pointer) - kBaseOffset + kSize);
155 allocator_->FreePendingToken(pointer, token);
168 void* pointer = allocator_->Alloc(kSize); local
170 allocator_->GetOffset(pointer) - kBaseOffset + kSize);
172 allocator_->FreePendingToken(pointer, tokens[ii]);
195 void* pointer = allocator_->Alloc(kBufferSize); local
197 allocator_->FreePendingToken(pointer, helper_->InsertToken());
204 void* pointer = allocator_->Alloc(kAlloc1); local
206 allocator_->FreePendingToken(pointer, helper
[all...]
/external/chromium_org/chrome/browser/resources/uber/
H A Duber_frame.css31 cursor: pointer;
41 pointer-events: none;
53 cursor: pointer;
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-message.h81 // can stream a NULL char pointer to it in the former, but not in the
83 // class hides this difference by treating a NULL char pointer as
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
135 // Streams a pointer value to this object.
138 // stream a pointer to a Message, this definition will be used as it
140 // [temp.func.order].) If you stream a non-pointer, then the
143 // The reason for this overload is that streaming a NULL pointer to
149 inline Message& operator <<(T* const& pointer) { // NOLINT argument
150 if (pointer
153 *ss_ << pointer; local
206 StreamHelper(internal::true_type , T* pointer) argument
210 *ss_ << pointer; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-message.h78 // can stream a NULL char pointer to it in the former, but not in the
80 // class hides this difference by treating a NULL char pointer as
111 // Streams a value (either a pointer or not) to this object.
118 // Streams a non-pointer value to this object.
125 // Streams a pointer value to this object.
128 // stream a pointer to a Message, this definition will be used as it
130 // [temp.func.order].) If you stream a non-pointer, then the
133 // The reason for this overload is that streaming a NULL pointer to
139 inline Message& operator <<(T* const& pointer) { // NOLINT argument
140 if (pointer
202 StreamHelper(internal::true_type , T* pointer) argument
[all...]
/external/gtest/include/gtest/
H A Dgtest-message.h81 // can stream a NULL char pointer to it in the former, but not in the
83 // class hides this difference by treating a NULL char pointer as
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
135 // Streams a pointer value to this object.
138 // stream a pointer to a Message, this definition will be used as it
140 // [temp.func.order].) If you stream a non-pointer, then the
143 // The reason for this overload is that streaming a NULL pointer to
149 inline Message& operator <<(T* const& pointer) { // NOLINT argument
150 if (pointer
153 *ss_ << pointer; local
206 StreamHelper(internal::true_type , T* pointer) argument
210 *ss_ << pointer; local
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h78 // can stream a NULL char pointer to it in the former, but not in the
80 // class hides this difference by treating a NULL char pointer as
111 // Streams a value (either a pointer or not) to this object.
118 // Streams a non-pointer value to this object.
125 // Streams a pointer value to this object.
128 // stream a pointer to a Message, this definition will be used as it
130 // [temp.func.order].) If you stream a non-pointer, then the
133 // The reason for this overload is that streaming a NULL pointer to
139 inline Message& operator <<(T* const& pointer) { // NOLINT argument
140 if (pointer
202 StreamHelper(internal::true_type , T* pointer) argument
[all...]
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-message.h78 // can stream a NULL char pointer to it in the former, but not in the
80 // class hides this difference by treating a NULL char pointer as
111 // Streams a value (either a pointer or not) to this object.
118 // Streams a non-pointer value to this object.
125 // Streams a pointer value to this object.
128 // stream a pointer to a Message, this definition will be used as it
130 // [temp.func.order].) If you stream a non-pointer, then the
133 // The reason for this overload is that streaming a NULL pointer to
139 inline Message& operator <<(T* const& pointer) { // NOLINT argument
140 if (pointer
202 StreamHelper(internal::true_type , T* pointer) argument
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h76 // can stream a NULL char pointer to it in the former, but not in the
78 // class hides this difference by treating a NULL char pointer as
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
120 // Streams a pointer value to this object.
123 // stream a pointer to a Message, this definition will be used as it
125 // [temp.func.order].) If you stream a non-pointer, then the
128 // The reason for this overload is that streaming a NULL pointer to
134 inline Message& operator <<(T* const& pointer) { // NOLINT argument
135 if (pointer
196 StreamHelper(internal::true_type , T* pointer) argument
[all...]

Completed in 5949 milliseconds

1234567891011>>