HomeSort by relevance Sort by last modified time
    Searched refs:opaque (Results 1 - 25 of 621) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
unwind-attr.c 4 int opaque();
9 return opaque();
trapv.c 28 extern void opaque(int);
29 opaque(i++);
42 extern void opaque(int);
43 opaque(++i);
  /external/webrtc/webrtc/base/
linuxfdwalk.h 28 int fdwalk(void (*func)(void *, int), void *opaque);
  /external/clang/test/CodeGenCXX/
exceptions-no-rtti.cpp 32 void opaque();
39 opaque();
44 opaque();
eh.cpp 184 void opaque();
193 opaque();
205 opaque();
211 void opaque();
222 opaque();
248 void opaque();
254 opaque();
275 opaque();
290 bool opaque(const A&);
302 if (opaque(x))
    [all...]
  /external/freetype/src/gzip/
zutil.c 83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
85 voidpf buf = opaque; /* just to make some compilers happy */
107 void zcfree (voidpf opaque, voidpf ptr)
125 ptr = opaque; /* just to make some compilers happy */
142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
144 if (opaque) opaque = 0; /* to make compiler happy */
148 void zcfree (voidpf opaque, voidpf ptr)
150 if (opaque) opaque = 0; /* to make compiler happy *
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
device_memory.h 43 // DeviceMemoryBase::opaque does not necessarily produce a pointer that can be
50 // region. An opaque pointer may be provided -- see header for details on the
52 explicit DeviceMemoryBase(void *opaque = nullptr, uint64 size = 0,
54 : opaque_(opaque), size_(size), is_sub_buffer_(is_sub_buffer) {}
67 return opaque() < other.opaque();
75 void *opaque() { return opaque_; } function in class:perftools::gputools::DeviceMemoryBase
76 const void *opaque() const { return opaque_; } function in class:perftools::gputools::DeviceMemoryBase
82 // their opaque pointer and size).
84 return opaque() == other.opaque() && size() == other.size()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
zutil.c 216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void zcfree (voidpf opaque, voidpf ptr)
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void zcfree (voidpf opaque, voidpf ptr)
283 if (opaque) opaque = 0; /* to make compiler happy */
    [all...]
  /external/zlib/src/contrib/minizip/
ioapi.h 135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
155 voidpf opaque; member in struct:zlib_filefunc_def_s
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin))
171 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
ioapi.c 34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size))
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
ioapi.h 135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
155 voidpf opaque; member in struct:zlib_filefunc_def_s
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin))
171 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
ioapi.c 34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
spray.x 59 typedef opaque sprayarr<SPRAYMAX>;
sm_inter.x 78 opaque priv[16]; /* private information to store at monitor for requesting process */
109 opaque priv[16]; /* stored private information */
  /frameworks/base/services/tests/servicestests/src/com/android/server/policy/
PhoneWindowManagerTest.java 64 PixelFormat.OPAQUE);
98 final FakeWindowState opaque = createOpaqueFullscreen(false); local
111 assertEquals(opaque, PhoneWindowManager.chooseNavigationColorWindowLw(
112 opaque, opaque, null, NAV_BAR_BOTTOM));
114 opaque, dimmingImTarget, null, NAV_BAR_BOTTOM));
116 opaque, dimmingNonImTarget, null, NAV_BAR_BOTTOM));
125 opaque, opaque, visibleIme, NAV_BAR_BOTTOM));
127 opaque, dimmingImTarget, visibleIme, NAV_BAR_BOTTOM))
    [all...]
  /external/clang/test/Analysis/
taint-tester.cpp 30 class opaque;
31 void testOpaqueClass(opaque *obj) {
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
tuple_thunk.cc 30 buffer_allocations.GetDeviceAddress(tuple_element_buffer).opaque());
42 tuple_element_buffer_addresses.data(), dest_buffer_address.opaque(),
  /external/valgrind/include/
pub_tool_stacktrace.h 68 // 'n' gives the index of the passed ip. 'opaque' is an arbitrary
73 void(*action)(UInt n, Addr ip, void* opaque),
74 void* opaque,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
zutil.c 220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
222 voidpf buf = opaque; /* just to make some compilers happy */
244 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
262 ptr = opaque; /* just to make some compilers happy */
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
281 if (opaque) opaque = 0; /* to make compiler happy */
285 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
287 if (opaque) opaque = 0; /* to make compiler happy */
    [all...]
  /external/python/cpython2/Modules/zlib/
zutil.c 220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
222 voidpf buf = opaque; /* just to make some compilers happy */
244 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
262 ptr = opaque; /* just to make some compilers happy */
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
281 if (opaque) opaque = 0; /* to make compiler happy */
285 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
287 if (opaque) opaque = 0; /* to make compiler happy *
    [all...]
  /external/skia/bench/
BlurOccludedRRectBench.cpp 30 SkPaint opaque; variable
31 opaque.setAntiAlias(true);
32 opaque.setColor(SK_ColorWHITE);
71 canvas->drawRRect(rr, opaque);
  /external/skqp/bench/
BlurOccludedRRectBench.cpp 30 SkPaint opaque; variable
31 opaque.setAntiAlias(true);
32 opaque.setColor(SK_ColorWHITE);
71 canvas->drawRRect(rr, opaque);
  /external/syslinux/com32/lib/zlib/
zutil.c 216 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
283 if (opaque) opaque = 0; /* to make compiler happy *
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
zutil.c 220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
222 voidpf buf = opaque; /* just to make some compilers happy */
244 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
262 ptr = opaque; /* just to make some compilers happy */
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
281 if (opaque) opaque = 0; /* to make compiler happy */
285 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
287 if (opaque) opaque = 0; /* to make compiler happy *
    [all...]
  /external/tensorflow/tensorflow/stream_executor/host/
host_gpu_executor.cc 49 return reinterpret_cast<char *>(parent->opaque()) + offset_bytes;
54 delete[] static_cast<char *>(mem->opaque());
59 memset(location->opaque(), 0, size);
65 memset(location->opaque(), value, size);
73 void *src_mem = const_cast<void *>(gpu_src.opaque());
81 void *dst_mem = gpu_dst->opaque();
93 void *dst_mem = gpu_dst->opaque();
94 void *src_mem = const_cast<void *>(gpu_src.opaque());
105 void *gpu_mem = location->opaque();
115 void *gpu_mem = location->opaque();
    [all...]

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 91011>>