Searched refs:pointer (Results 76 - 100 of 836) sorted by relevance

1234567891011>>

/external/libmojo/mojo/public/c/system/tests/
H A Dcore_unittest.cc289 void* pointer; local
297 pointer = nullptr;
299 MojoMapBuffer(h0, 0, 100, &pointer, MOJO_MAP_BUFFER_FLAG_NONE));
300 ASSERT_TRUE(pointer);
301 static_cast<char*>(pointer)[50] = 'x';
312 static_cast<char*>(pointer)[51] = 'y';
315 EXPECT_EQ(MOJO_RESULT_OK, MojoUnmapBuffer(pointer));
318 pointer = nullptr;
320 MojoMapBuffer(h1, 50, 50, &pointer, MOJO_MAP_BUFFER_FLAG_NONE));
321 ASSERT_TRUE(pointer);
[all...]
/external/opencv/cv/src/
H A Dcvconvhull.cpp199 icvCalcAndWritePtIndices( CvPoint** pointer, int* stack, int start, int end, argument
211 CvPoint* ptr = (CvPoint*)pointer[stack[i]];
232 CvPoint** pointer = 0; local
332 CV_CALL( pointer = (CvPoint**)cvAlloc( ptseq->total*sizeof(pointer[0]) ));
334 pointerf = (CvPoint2D32f**)pointer;
340 pointer[i] = (CvPoint*)reader.ptr;
347 icvSortPointsByPointers_32s( pointer, total, 0 );
350 int y = pointer[i]->y;
351 if( pointer[miny_in
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-more-actions.h48 // function pointer or a functor. Invoke(f) can be used as an
55 // pointer or a functor).
150 // Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
151 // mock function to *pointer.
154 AND_1_VALUE_PARAMS(pointer)) {
155 *pointer = ::std::tr1::get<k>(args);
158 // Action SaveArgPointee<k>(pointer) saves the value pointed to
159 // by the k-th (0-based) argument of the mock function to *pointer.
162 AND_1_VALUE_PARAMS(pointer)) {
163 *pointer
[all...]
/external/googletest/googlemock/include/gmock/
H A Dgmock-more-actions.h48 // function pointer or a functor. Invoke(f) can be used as an
55 // pointer or a functor).
167 // Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
168 // mock function to *pointer.
171 AND_1_VALUE_PARAMS(pointer)) {
172 *pointer = ::testing::get<k>(args);
175 // Action SaveArgPointee<k>(pointer) saves the value pointed to
176 // by the k-th (0-based) argument of the mock function to *pointer.
179 AND_1_VALUE_PARAMS(pointer)) {
180 *pointer
[all...]
/external/iptables/extensions/
H A DAndroid.mk21 -Wno-sign-compare -Wno-pointer-arith \
22 -Wno-pointer-bool-conversion \
23 -Wno-tautological-pointer-compare
/external/v8/testing/gmock/include/gmock/
H A Dgmock-more-actions.h48 // function pointer or a functor. Invoke(f) can be used as an
55 // pointer or a functor).
167 // Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
168 // mock function to *pointer.
171 AND_1_VALUE_PARAMS(pointer)) {
172 *pointer = ::testing::get<k>(args);
175 // Action SaveArgPointee<k>(pointer) saves the value pointed to
176 // by the k-th (0-based) argument of the mock function to *pointer.
179 AND_1_VALUE_PARAMS(pointer)) {
180 *pointer
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
H A Disac_speed_test.cc71 size_t pointer = 0; local
72 for (int idx = 0; idx < subblocks; idx++, pointer += subblock_length) {
73 value = WebRtcIsacfix_Encode(ISACFIX_main_inst_, &in_data[pointer],
/external/icu/icu4c/source/common/
H A Duelement.h32 * It may be either a 32-bit integral value or an opaque void* pointer.
33 * The void* pointer may be smaller than 32 bits (e.g. 24 bits)
36 * Because a UElement is the size of a native pointer or a 32-bit
40 void* pointer; member in union:UElement
63 * a pointer, or clone a pointer, as appropriate.
/external/libcxx/test/std/iterators/iterator.primitives/iterator.basic/
H A Diterator.pass.cpp18 // typedef Pointer pointer;
35 static_assert((std::is_same<typename It::pointer, T*>::value), "");
47 static_assert((std::is_same<typename It::pointer, T*>::value), "");
59 static_assert((std::is_same<typename It::pointer, const T*>::value), "");
71 static_assert((std::is_same<typename It::pointer, const T*>::value), "");
/external/libcxx/test/std/iterators/iterator.primitives/iterator.traits/
H A Dconst_pointer.pass.cpp17 // typedef const T* pointer;
32 static_assert((std::is_same<It::pointer, const A*>::value), "");
H A Dpointer.pass.cpp17 // typedef T* pointer;
32 static_assert((std::is_same<It::pointer, A*>::value), "");
/external/libcxx/test/std/utilities/memory/default.allocator/
H A Dallocator_void.pass.cpp16 // typedef void* pointer;
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
/external/mesa3d/src/gallium/targets/xorg-nouveau/
H A Dnouveau_xorg.c94 static pointer
95 nouveau_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
109 return (pointer) 1;
/external/swiftshader/src/OpenGL/compiler/
H A DPoolAlloc.h152 // available, otherwise a properly aligned pointer to 'numBytes' of memory.
245 typedef T* pointer; typedef in class:pool_allocator
255 pointer address(reference x) const { return &x; }
283 pointer allocate(size_type n) {
284 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
286 pointer allocate(size_type n, const void*) {
287 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
289 void deallocate(pointer, size_type) {}
292 void construct(pointer p, const T& val) { new ((void *)p) T(val); }
293 void destroy(pointer
[all...]
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
H A DPVRTTextureAPI.h30 @param[in] pointer Pointer to header-texture's structure
42 EPVRTError PVRTTextureLoadFromPointer( const void* pointer,
/external/syslinux/gpxe/src/arch/i386/include/
H A Dlibkir.h22 #define __from_data16( pointer ) pointer
23 #define __from_text16( pointer ) pointer
154 * A pointer to a user buffer
207 * This constructs a user buffer from an ordinary pointer. Use it
208 * when you need to pass a pointer to an internal buffer to a function
/external/icu/icu4c/source/test/cintltst/
H A Dchashtst.c54 s.pointer = (void *)a;
55 t.pointer = (void *)b;
62 s.pointer = (void *)a;
63 t.pointer = (void *)b;
70 s.pointer = (void *)a;
71 t.pointer = (void *)b;
325 return *(const char*) key.pointer;
329 return (UBool)((key1.pointer != NULL) &&
330 (key2.pointer != NULL) &&
331 (uprv_strcmp((const char*)key1.pointer, (cons
[all...]
/external/clang/test/CodeGenCXX/
H A D2007-09-10-RecursiveTypeResolution.cpp30 typedef _Tp *pointer; typedef in struct:std::allocator
54 typedef __gnu_cxx::__normal_iterator < typename _Alloc::pointer,
H A Dthunk-use-after-free.cpp7 typedef _Tp *pointer; typedef in struct:new_allocator
17 typename _Tp_alloc_type::pointer _M_end_of_storage;
/external/freetype/src/psaux/
H A Dt1cmap.c124 FT_Pointer pointer )
126 FT_UNUSED( pointer );
150 FT_Pointer pointer )
152 FT_UNUSED( pointer );
184 FT_Pointer pointer )
189 FT_UNUSED( pointer );
287 FT_Pointer pointer )
293 FT_UNUSED( pointer );
/external/libmojo/mojo/edk/system/
H A Doptions_validation.h73 static bool IsAligned(const void* pointer) { argument
74 return reinterpret_cast<uintptr_t>(pointer) % alignment == 0;
85 // (We can't just give |HasMember()| a member pointer template argument instead,
/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/pdfium/third_party/freetype/src/psaux/
H A Dt1cmap.c124 FT_Pointer pointer )
126 FT_UNUSED( pointer );
150 FT_Pointer pointer )
152 FT_UNUSED( pointer );
184 FT_Pointer pointer )
189 FT_UNUSED( pointer );
287 FT_Pointer pointer )
293 FT_UNUSED( pointer );
/external/snakeyaml/src/test/java/org/pyyaml/
H A DPyMarkTest.java49 String pointer = lines[1];
52 int pointerPosition = pointer.indexOf("^");
/external/swiftshader/src/OpenGL/libGLESv2/
H A DVertexArray.cpp68 bool normalized, GLsizei stride, const void *pointer)
76 mVertexAttributes[attributeIndex].mPointer = pointer;

Completed in 1871 milliseconds

1234567891011>>