Searched refs:packed (Results 1 - 11 of 11) sorted by relevance

/system/vold/
H A DAsec.h40 } __attribute__((packed));
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/inc/
H A DosTIType.h149 #define PACKED_STRUCT(name,content) STRUCT { content } __attribute__ ((packed)) name
150 #define PACKED_STRUCT_NO_TYPEDEF(content) struct { content } __attribute__ ((packed))
151 #define PACKED_UNION(name,content) union { content } __attribute__ ((packed)) name
152 #define PACKED_UNION_NO_TYPEDEF(content) union { content } __attribute__ ((packed))
154 #define PACKED_ENUM(name, list) ENUM { list(ENUM_BODY) } __attribute__ ((packed)) name
/system/bluetooth/bluez-clean-headers/bluetooth/
H A Dbluetooth.h54 #define bt_get_unaligned(ptr) ({ struct __attribute__((packed)) { typeof(*(ptr)) __v; } *__p = (void *) (ptr); __p->__v; })
55 #define bt_put_unaligned(val, ptr) do { struct __attribute__((packed)) { typeof(*(ptr)) __v; } *__p = (void *) (ptr); __p->__v = (val); } while(0)
63 } __attribute__((packed)) bdaddr_t;
H A Dhci.h715 } __attribute__ ((packed)) hci_command_hdr;
/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.cpp835 c->packed = ggl_pack_color(c, c->state.buffers.color.format,
944 c->packed = ggl_pack_color(c, f,
1378 uint32_t packed = c->packed; local
1379 memset(dst, packed, ct);
1389 uint32_t packed = c->packed; local
1390 android_memset16(dst, packed, ct*2);
1400 uint32_t packed = GGL_HOST_TO_RGBA(c->packed); local
[all...]
/system/core/adb/
H A Dframebuffer_service.c50 } __attribute__((packed));
/system/core/include/private/pixelflinger/
H A Dggl_context.h513 uint32_t packed; member in struct:android::context_t
/system/core/libpixelflinger/codeflinger/
H A Dtexturing.cpp55 parts.packed = 0;
113 // just use a packed version of the color and extract the
125 parts.packed = (!mTextureMachine.mask && !mBlending
128 if (load || parts.packed) {
130 comment("load initial iterated color (8888 packed)");
135 comment("load initial iterated color (dest format packed)");
157 CONTEXT_LOAD(parts.iterated.reg, packed);
189 // iterated colors are packed, extract the one we need
685 // this is a packed format, and we don't support
H A DGGLAssembler.h288 uint32_t packed : 1; member in struct:android::GGLAssembler::fragment_parts_t
H A DGGLAssembler.cpp252 if (directTex | parts.packed) {

Completed in 139 milliseconds