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

<<11121314151617181920>>

  /external/libmojo/base/android/linker/
legacy_linker_jni.cc 265 LOG_INFO("Called back from java with handler %p, opaque %p",
266 callback->handler, callback->opaque);
302 LOG_INFO("Calling back to java with handler %p, opaque %p",
303 callback->handler, callback->opaque);
  /external/mesa3d/src/compiler/glsl/
link_atomics.cpp 284 prog->data->UniformStorage[atomic_buffer->Uniforms[u]].opaque[j].index =
286 prog->data->UniformStorage[atomic_buffer->Uniforms[u]].opaque[j].active =
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 55 zcontext_.opaque = Z_NULL;
220 zcontext_.opaque = Z_NULL;
  /external/zlib/src/examples/
zran.c 157 strm.opaque = Z_NULL;
271 strm.opaque = Z_NULL;
  /hardware/qcom/camera/msm8998/QCamera2/HAL/wrapper/
QualcommCamera.cpp 328 const void *opaque)
333 hardware->release_recording_frame(device, opaque);
  /prebuilts/go/darwin-x86/src/image/
image_test.go 14 Opaque() bool
37 Opaque,
49 m.Set(6, 3, Opaque)
50 if !cmp(m.ColorModel(), Opaque, m.At(6, 3)) {
54 if !m.SubImage(Rect(6, 3, 7, 4)).(image).Opaque() {
55 t.Errorf("%T: at (6, 3) was not opaque", m)
63 if !cmp(m.ColorModel(), Opaque, m.At(6, 3)) {
71 m.Set(3, 3, Opaque)
72 if !cmp(m.ColorModel(), Opaque, m.At(3, 3)) {
image.go 133 // Opaque scans the entire image and reports whether it is fully opaque.
134 func (p *RGBA) Opaque() bool {
245 // Opaque scans the entire image and reports whether it is fully opaque.
246 func (p *RGBA64) Opaque() bool {
344 // Opaque scans the entire image and reports whether it is fully opaque.
345 func (p *NRGBA) Opaque() bool {
456 // Opaque scans the entire image and reports whether it is fully opaque
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
cgo.go 40 // 1) they are opaque to escape analysis, so the argument is considered to
  /prebuilts/go/linux-x86/src/image/
image_test.go 14 Opaque() bool
37 Opaque,
49 m.Set(6, 3, Opaque)
50 if !cmp(m.ColorModel(), Opaque, m.At(6, 3)) {
54 if !m.SubImage(Rect(6, 3, 7, 4)).(image).Opaque() {
55 t.Errorf("%T: at (6, 3) was not opaque", m)
63 if !cmp(m.ColorModel(), Opaque, m.At(6, 3)) {
71 m.Set(3, 3, Opaque)
72 if !cmp(m.ColorModel(), Opaque, m.At(3, 3)) {
image.go 133 // Opaque scans the entire image and reports whether it is fully opaque.
134 func (p *RGBA) Opaque() bool {
245 // Opaque scans the entire image and reports whether it is fully opaque.
246 func (p *RGBA64) Opaque() bool {
344 // Opaque scans the entire image and reports whether it is fully opaque.
345 func (p *NRGBA) Opaque() bool {
456 // Opaque scans the entire image and reports whether it is fully opaque
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
cgo.go 40 // 1) they are opaque to escape analysis, so the argument is considered to
  /toolchain/binutils/binutils-2.27/zlib/examples/
zran.c 157 strm.opaque = Z_NULL;
271 strm.opaque = Z_NULL;
  /frameworks/base/core/java/android/view/
SurfaceView.java 355 boolean opaque = true;
358 opaque = super.gatherTransparentRegion(region);
371 opaque = false;
373 return opaque;
459 mSurfaceFlags |= SurfaceControl.OPAQUE;
461 mSurfaceFlags &= ~SurfaceControl.OPAQUE;
541 (mSurfaceFlags & SurfaceControl.OPAQUE) != 0,
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_etc.c 54 bool opaque; member in struct:etc2_block
356 block->opaque = src[3] & 0x2;
432 /* opaque bit must be set in planar mode */
433 block->opaque = true;
458 /* Use same modifier tables as for etc1 textures if opaque bit is set
461 block->modifier_tables[0] = (!punchthrough_alpha || block->opaque) ?
464 block->modifier_tables[1] = (!punchthrough_alpha || block->opaque) ?
491 if (!block->opaque && idx == 2) {
511 if (!block->opaque && idx == 2) {
    [all...]
  /device/google/marlin/camera/QCamera2/HAL/
QCameraMem.cpp 962 * DESCRIPTION: query buffer index by opaque ptr
965 * @opaque : opaque ptr
971 int QCameraHeapMemory::getMatchBufIndex(const void *opaque,
979 if (mPtr[i] == opaque) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
shape_util_test.cc 439 Shape opaque = ShapeUtil::MakeOpaqueShape(); local
443 Shape tuple = ShapeUtil::MakeTupleShape({opaque, scalar, matrix, matrix2});
446 EXPECT_EQ("opaque[]", ShapeUtil::HumanString(opaque));
450 EXPECT_EQ("(opaque[], f32[], u32[1,2], s32[3,4])",
452 EXPECT_EQ("((opaque[], f32[], u32[1,2], s32[3,4]), u32[1,2])",
455 EXPECT_EQ("opaque[]", ShapeUtil::HumanStringWithLayout(opaque));
459 EXPECT_EQ("(opaque[], f32[], u32[1,2]{1,0}, s32[3,4]{0,1})",
461 EXPECT_EQ("((opaque[], f32[], u32[1,2]{1,0}, s32[3,4]{0,1}), u32[1,2]{1,0})"
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
zlib.h 81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
82 typedef void (*free_func) OF((voidpf opaque, voidpf address));
100 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
136 to zero. The application must initialize zalloc, zfree and opaque before
140 The opaque value provided by the application will be passed as the first
143 opaque value.
212 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
231 zalloc, zfree and opaque must be initialized before by the caller. If
381 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
546 fields next_in, zalloc, zfree and opaque must be initialized before by th
    [all...]
  /external/libmicrohttpd/src/microhttpd/
digestauth.c 790 * @param opaque string to user for opaque value
802 const char *opaque,
829 "Digest realm=\"%s\",qop=\"auth\",nonce=\"%s\",opaque=\"%s\"%s",
832 opaque,
851 "Digest realm=\"%s\",qop=\"auth\",nonce=\"%s\",opaque=\"%s\"%s",
854 opaque,
  /external/python/cpython3/Modules/zlib/
zlib.h 81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
82 typedef void (*free_func) OF((voidpf opaque, voidpf address));
100 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
136 to zero. The application must initialize zalloc, zfree and opaque before
140 The opaque value provided by the application will be passed as the first
143 opaque value.
212 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
231 zalloc, zfree and opaque must be initialized before by the caller. If
381 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
546 fields next_in, zalloc, zfree and opaque must be initialized before by th
    [all...]
  /external/skia/src/gpu/
SkGr.cpp 383 // the opaque paint color. The shader's output is blended using the provided mode by
389 GrColor4f shaderInput = origColor.opaque();
416 // the opaque paint color. The paint's alpha is applied to the post-blended color.
417 auto processor = GrConstColorProcessor::Make(origColor.opaque(),
425 grPaint->setColor4f(origColor.opaque());
  /external/skqp/src/gpu/
SkGr.cpp 404 // the opaque paint color. The shader's output is blended using the provided mode by
410 GrColor4f shaderInput = origColor.opaque();
437 // the opaque paint color. The paint's alpha is applied to the post-blended color.
438 auto processor = GrConstColorProcessor::Make(origColor.opaque(),
446 grPaint->setColor4f(origColor.opaque());
  /external/zlib/src/
zlib.h 81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
82 typedef void (*free_func) OF((voidpf opaque, voidpf address));
100 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
136 to zero. The application must initialize zalloc, zfree and opaque before
140 The opaque value provided by the application will be passed as the first
143 opaque value.
212 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
231 zalloc, zfree and opaque must be initialized before by the caller. If
381 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
546 fields next_in, zalloc, zfree and opaque must be initialized before by th
    [all...]
  /external/bzip2/
bzlib.c 102 void* default_bzalloc ( void* opaque, Int32 items, Int32 size )
109 void default_bzfree ( void* opaque, void* addr )
948 bzf->strm.opaque = NULL;
    [all...]
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.mm 231 m_layer.opaque = TRUE;
  /external/jemalloc/src/
prof.c 1115 prof_tctx_dump_iter(prof_tctx_tree_t *tctxs, prof_tctx_t *tctx, void *opaque)
1118 (struct prof_tctx_dump_iter_arg_s *)opaque;
1196 prof_gctx_merge_iter(prof_gctx_tree_t *gctxs, prof_gctx_t *gctx, void *opaque)
1199 (struct prof_gctx_merge_iter_arg_s *)opaque;
1263 void *opaque)
1266 (struct prof_tdata_merge_iter_arg_s *)opaque;
    [all...]

Completed in 486 milliseconds

<<11121314151617181920>>