Searched defs:packed (Results 1 - 5 of 5) sorted by relevance

/system/media/audio_utils/include/audio_utils/
H A Dminifloat.h30 /** A pair of gain_minifloat_t packed into a single word */
48 static inline gain_minifloat_t gain_minifloat_unpack_left(gain_minifloat_packed_t packed) argument
50 return packed & 0xFFFF;
53 static inline gain_minifloat_t gain_minifloat_unpack_right(gain_minifloat_packed_t packed) argument
55 return packed >> 16;
/system/core/libpixelflinger/
H A Dclear.cpp50 static void memset2d(context_t* c, const surface_t& s, uint32_t packed, argument
67 memset(dst, packed, w);
73 android_memset16((uint16_t*)dst, packed, w);
81 android_memset32((uint32_t*)dst, packed, w);
130 const uint32_t packed = c->state.clear.colorPacked; local
131 memset2d(c, c->state.buffers.color, packed, l, t, w, h);
139 const uint32_t packed = c->state.clear.depthPacked; local
140 memset2d(c, c->state.buffers.depth, packed, l, t, w, h);
H A Dscanline.cpp1670 c->packed = ggl_pack_color(c, c->state.buffers.color.format,
1779 c->packed = ggl_pack_color(c, f,
2284 uint32_t packed = c->packed; local
2285 memset(dst, packed, ct);
2295 uint32_t packed = c->packed; local
2296 android_memset16(dst, packed, ct*2);
2306 uint32_t packed = GGL_HOST_TO_RGBA(c->packed); local
[all...]
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.h298 uint32_t packed : 1; member in struct:android::GGLAssembler::fragment_parts_t
/system/core/libpixelflinger/include/private/pixelflinger/
H A Dggl_context.h535 uint32_t packed; member in struct:android::context_t

Completed in 223 milliseconds