/external/libaom/libaom/aom_dsp/x86/ |
D | fft_sse2.c | 39 void aom_fft_unpack_2d_output_sse2(const float *packed, float *output, int n) { in aom_fft_unpack_2d_output_sse2() argument 41 output[0] = packed[0]; in aom_fft_unpack_2d_output_sse2() 43 output[2 * (n2 * n)] = packed[n2 * n]; in aom_fft_unpack_2d_output_sse2() 46 output[2 * n2] = packed[n2]; in aom_fft_unpack_2d_output_sse2() 48 output[2 * (n2 * n + n2)] = packed[n2 * n + n2]; in aom_fft_unpack_2d_output_sse2() 52 output[2 * (0 * n + c)] = packed[c]; in aom_fft_unpack_2d_output_sse2() 53 output[2 * (0 * n + c) + 1] = packed[c + n2]; in aom_fft_unpack_2d_output_sse2() 54 output[2 * (n2 * n + c) + 0] = packed[n2 * n + c]; in aom_fft_unpack_2d_output_sse2() 55 output[2 * (n2 * n + c) + 1] = packed[n2 * n + c + n2]; in aom_fft_unpack_2d_output_sse2() 58 output[2 * (r * n + 0)] = packed[r * n]; in aom_fft_unpack_2d_output_sse2() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | formats.csv | 37 # - channel encoding (only meaningful for array or packed layout), containing for each 55 MESA_FORMAT_A8B8G8R8_UNORM , packed, 1, 1, 1, un8 , un8 , un8 , un8 , wzyx, rgb 56 MESA_FORMAT_X8B8G8R8_UNORM , packed, 1, 1, 1, x8 , un8 , un8 , un8 , wzy1, rgb 57 MESA_FORMAT_R8G8B8A8_UNORM , packed, 1, 1, 1, un8 , un8 , un8 , un8 , xyzw, rgb 58 MESA_FORMAT_R8G8B8X8_UNORM , packed, 1, 1, 1, un8 , un8 , un8 , x8 , xyz1, rgb 59 MESA_FORMAT_B8G8R8A8_UNORM , packed, 1, 1, 1, un8 , un8 , un8 , un8 , zyxw, rgb 60 MESA_FORMAT_B8G8R8X8_UNORM , packed, 1, 1, 1, un8 , un8 , un8 , x8 , zyx1, rgb 61 MESA_FORMAT_A8R8G8B8_UNORM , packed, 1, 1, 1, un8 , un8 , un8 , un8 , yzwx, rgb 62 MESA_FORMAT_X8R8G8B8_UNORM , packed, 1, 1, 1, x8 , un8 , un8 , un8 , yzw1, rgb 63 MESA_FORMAT_L16A16_UNORM , packed, 1, 1, 1, un16, un16, , , xxxy, rgb [all …]
|
/external/u-boot/include/ |
D | usbdescriptors.h | 188 } __attribute__ ((packed)); 200 } __attribute__ ((packed)); 211 } __attribute__ ((packed)); 228 } __attribute__ ((packed)); 242 } __attribute__ ((packed)); 249 } __attribute__ ((packed)); 255 } __attribute__ ((packed)); 268 } __attribute__ ((packed)); 275 } __attribute__ ((packed)); 282 } __attribute__ ((packed)); [all …]
|
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/ |
D | unittest_extension_packed_nano.proto | 13 repeated int32 packed_int32 = 10 [ packed = true ]; 14 repeated uint32 packed_uint32 = 11 [ packed = true ]; 15 repeated sint32 packed_sint32 = 12 [ packed = true ]; 16 repeated int64 packed_int64 = 13 [ packed = true ]; 17 repeated uint64 packed_uint64 = 14 [ packed = true ]; 18 repeated sint64 packed_sint64 = 15 [ packed = true ]; 19 repeated fixed32 packed_fixed32 = 16 [ packed = true ]; 20 repeated sfixed32 packed_sfixed32 = 17 [ packed = true ]; 21 repeated fixed64 packed_fixed64 = 18 [ packed = true ]; 22 repeated sfixed64 packed_sfixed64 = 19 [ packed = true ]; [all …]
|
/external/kernel-headers/original/uapi/linux/ |
D | edd.h | 92 } __attribute__ ((packed)) isa; 99 } __attribute__ ((packed)) pci; 103 } __attribute__ ((packed)) ibnd; 106 } __attribute__ ((packed)) xprs; 109 } __attribute__ ((packed)) htpt; 112 } __attribute__ ((packed)) unknown; 121 } __attribute__ ((packed)) ata; 129 } __attribute__ ((packed)) atapi; 135 } __attribute__ ((packed)) scsi; 139 } __attribute__ ((packed)) usb; [all …]
|
D | pfkeyv2.h | 24 } __attribute__((packed)); 30 } __attribute__((packed)); 42 } __attribute__((packed)); 52 } __attribute__((packed)); 61 } __attribute__((packed)); 69 } __attribute__((packed)); 78 } __attribute__((packed)); 90 } __attribute__((packed)); 102 } __attribute__((packed)); 127 } __attribute__((packed)); [all …]
|
/external/skia/src/core/ |
D | SkPath_serial.cpp | 41 static unsigned extract_version(uint32_t packed) { in extract_version() argument 42 return packed & kVersion_SerializationMask; in extract_version() 45 static SkPath::FillType extract_filltype(uint32_t packed) { in extract_filltype() argument 46 return static_cast<SkPath::FillType>((packed >> kFillType_SerializationShift) & 0x3); in extract_filltype() 49 static SerializationType extract_serializationtype(uint32_t packed) { in extract_serializationtype() argument 50 return static_cast<SerializationType>((packed >> kType_SerializationShift) & 0xF); in extract_serializationtype() 75 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemoryAsRRect() local 81 buffer.write32(packed); in writeToMemoryAsRRect() 96 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemory() local 118 buffer.write32(packed); in writeToMemory() [all …]
|
/external/skqp/src/core/ |
D | SkPath_serial.cpp | 41 static unsigned extract_version(uint32_t packed) { in extract_version() argument 42 return packed & kVersion_SerializationMask; in extract_version() 45 static SkPath::FillType extract_filltype(uint32_t packed) { in extract_filltype() argument 46 return static_cast<SkPath::FillType>((packed >> kFillType_SerializationShift) & 0x3); in extract_filltype() 49 static SerializationType extract_serializationtype(uint32_t packed) { in extract_serializationtype() argument 50 return static_cast<SerializationType>((packed >> kType_SerializationShift) & 0xF); in extract_serializationtype() 75 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemoryAsRRect() local 81 buffer.write32(packed); in writeToMemoryAsRRect() 96 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemory() local 118 buffer.write32(packed); in writeToMemory() [all …]
|
/external/rmi4utils/f54test/ |
D | f54test.h | 261 } __attribute__((packed)); 277 } __attribute__((packed)); 293 } __attribute__((packed)); 309 } __attribute__((packed)); 325 } __attribute__((packed)); 341 } __attribute__((packed)); 357 } __attribute__((packed)); 373 } __attribute__((packed)); 389 } __attribute__((packed)); 405 } __attribute__((packed)); [all …]
|
/external/u-boot/include/linux/ |
D | edd.h | 82 } __attribute__ ((packed)) isa; 89 } __attribute__ ((packed)) pci; 93 } __attribute__ ((packed)) ibnd; 96 } __attribute__ ((packed)) xprs; 99 } __attribute__ ((packed)) htpt; 102 } __attribute__ ((packed)) unknown; 111 } __attribute__ ((packed)) ata; 119 } __attribute__ ((packed)) atapi; 125 } __attribute__ ((packed)) scsi; 129 } __attribute__ ((packed)) usb; [all …]
|
/external/iproute2/include/uapi/linux/ |
D | pfkeyv2.h | 24 } __attribute__((packed)); 30 } __attribute__((packed)); 42 } __attribute__((packed)); 52 } __attribute__((packed)); 61 } __attribute__((packed)); 69 } __attribute__((packed)); 78 } __attribute__((packed)); 90 } __attribute__((packed)); 102 } __attribute__((packed)); 127 } __attribute__((packed)); [all …]
|
/external/kernel-headers/original/uapi/linux/usb/ |
D | cdc.h | 69 } __attribute__ ((packed)); 82 } __attribute__ ((packed)); 91 } __attribute__ ((packed)); 109 } __attribute__ ((packed)); 120 } __attribute__ ((packed)); 132 } __attribute__ ((packed)); 145 } __attribute__ ((packed)); 154 } __attribute__ ((packed)); 164 } __attribute__ ((packed)); 175 } __attribute__ ((packed)); [all …]
|
D | ch9.h | 219 } __attribute__ ((packed)); 283 } __attribute__ ((packed)); 305 } __attribute__ ((packed)); 355 } __attribute__ ((packed)); 373 } __attribute__ ((packed)); 393 } __attribute__ ((packed)); 413 } __attribute__ ((packed)); 675 } __attribute__ ((packed)); 689 } __attribute__ ((packed)); 731 } __attribute__ ((packed)); [all …]
|
/external/protobuf/src/google/protobuf/ |
D | unittest_proto3_arena_lite.proto | 148 // Test messages for packed fields 151 repeated int32 packed_int32 = 90 [packed = true]; 152 repeated int64 packed_int64 = 91 [packed = true]; 153 repeated uint32 packed_uint32 = 92 [packed = true]; 154 repeated uint64 packed_uint64 = 93 [packed = true]; 155 repeated sint32 packed_sint32 = 94 [packed = true]; 156 repeated sint64 packed_sint64 = 95 [packed = true]; 157 repeated fixed32 packed_fixed32 = 96 [packed = true]; 158 repeated fixed64 packed_fixed64 = 97 [packed = true]; 159 repeated sfixed32 packed_sfixed32 = 98 [packed = true]; [all …]
|
D | unittest_proto3_lite.proto | 147 // Test messages for packed fields 150 repeated int32 packed_int32 = 90 [packed = true]; 151 repeated int64 packed_int64 = 91 [packed = true]; 152 repeated uint32 packed_uint32 = 92 [packed = true]; 153 repeated uint64 packed_uint64 = 93 [packed = true]; 154 repeated sint32 packed_sint32 = 94 [packed = true]; 155 repeated sint64 packed_sint64 = 95 [packed = true]; 156 repeated fixed32 packed_fixed32 = 96 [packed = true]; 157 repeated fixed64 packed_fixed64 = 97 [packed = true]; 158 repeated sfixed32 packed_sfixed32 = 98 [packed = true]; [all …]
|
D | unittest_proto3_arena.proto | 147 // Test messages for packed fields 150 repeated int32 packed_int32 = 90 [packed = true]; 151 repeated int64 packed_int64 = 91 [packed = true]; 152 repeated uint32 packed_uint32 = 92 [packed = true]; 153 repeated uint64 packed_uint64 = 93 [packed = true]; 154 repeated sint32 packed_sint32 = 94 [packed = true]; 155 repeated sint64 packed_sint64 = 95 [packed = true]; 156 repeated fixed32 packed_fixed32 = 96 [packed = true]; 157 repeated fixed64 packed_fixed64 = 97 [packed = true]; 158 repeated sfixed32 packed_sfixed32 = 98 [packed = true]; [all …]
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_format_yuv.c | 57 LLVMValueRef packed, in uyvy_to_yuv_soa() argument 71 assert(lp_check_value(type, packed)); in uyvy_to_yuv_soa() 99 tmp = LLVMBuildLShr(builder, packed, lp_build_const_int_vec(gallivm, type, 8), ""); in uyvy_to_yuv_soa() 114 *y = LLVMBuildLShr(builder, packed, shift, ""); in uyvy_to_yuv_soa() 118 *u = packed; in uyvy_to_yuv_soa() 119 *v = LLVMBuildLShr(builder, packed, lp_build_const_int_vec(gallivm, type, 16), ""); in uyvy_to_yuv_soa() 121 *u = LLVMBuildLShr(builder, packed, lp_build_const_int_vec(gallivm, type, 24), ""); in uyvy_to_yuv_soa() 122 *v = LLVMBuildLShr(builder, packed, lp_build_const_int_vec(gallivm, type, 8), ""); in uyvy_to_yuv_soa() 141 LLVMValueRef packed, in yuyv_to_yuv_soa() argument 155 assert(lp_check_value(type, packed)); in yuyv_to_yuv_soa() [all …]
|
/external/protobuf/js/ |
D | testbinary.proto | 89 repeated int32 packed_repeated_int32 = 61 [packed=true]; 90 repeated int64 packed_repeated_int64 = 62 [packed=true]; 91 repeated uint32 packed_repeated_uint32 = 63 [packed=true]; 92 repeated uint64 packed_repeated_uint64 = 64 [packed=true]; 93 repeated sint32 packed_repeated_sint32 = 65 [packed=true]; 94 repeated sint64 packed_repeated_sint64 = 66 [packed=true]; 95 repeated fixed32 packed_repeated_fixed32 = 67 [packed=true]; 96 repeated fixed64 packed_repeated_fixed64 = 68 [packed=true]; 97 repeated sfixed32 packed_repeated_sfixed32 = 69 [packed=true]; 98 repeated sfixed64 packed_repeated_sfixed64 = 70 [packed=true]; [all …]
|
/external/kernel-headers/original/uapi/linux/wimax/ |
D | i2400m.h | 146 } __attribute__ ((packed)); 186 } __attribute__ ((packed)); 212 } __attribute__((packed)); 230 } __attribute__((packed)); 284 } __attribute__ ((packed)); 323 } __attribute__ ((packed)); 428 } __attribute__((packed)); 439 } __attribute__((packed)); 475 } __attribute__((packed)); 484 } __attribute__((packed)); [all …]
|
/external/mesa3d/src/gallium/tests/unit/ |
D | u_format_test.c | 58 const uint8_t *packed, in print_packed() argument 66 printf("%s%02x", sep, packed[i]); in print_packed() 214 format_desc->fetch_rgba_float(unpacked[i][j], test->packed, j, i); in test_format_fetch_rgba_float() 246 test->packed, 0, in test_format_unpack_rgba_float() 279 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; in test_format_pack_rgba_float() local 292 memset(packed, 0, sizeof packed); in test_format_pack_rgba_float() 301 format_desc->pack_rgba_float(packed, 0, in test_format_pack_rgba_float() 307 if ((test->packed[i] & test->mask[i]) != (packed[i] & test->mask[i])) in test_format_pack_rgba_float() 321 print_packed(format_desc, "FAILED: ", packed, " obtained\n"); in test_format_pack_rgba_float() 322 print_packed(format_desc, " ", test->packed, " expected\n"); in test_format_pack_rgba_float() [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_aepack.py | 30 packed = aepack.pack(o) 31 unpacked = aepack.unpack(packed) 36 packed = aepack.pack(o) 37 unpacked = aepack.unpack(packed) 42 packed = aepack.pack(o) 43 unpacked = aepack.unpack(packed) 48 packed = aepack.pack(o) 49 unpacked = aepack.unpack(packed) 54 packed = aepack.pack(o) 55 unpacked = aepack.unpack(packed) [all …]
|
/external/nanopb-c/tests/alltypes_proto3/ |
D | alltypes.proto | 64 repeated int32 rep_int32 = 21 [packed = true]; 65 repeated int64 rep_int64 = 22 [packed = true]; 66 repeated uint32 rep_uint32 = 23 [packed = true]; 67 repeated uint64 rep_uint64 = 24 [packed = true]; 68 repeated sint32 rep_sint32 = 25 [packed = true]; 69 repeated sint64 rep_sint64 = 26 [packed = true]; 70 repeated bool rep_bool = 27 [packed = true]; 72 repeated fixed32 rep_fixed32 = 28 [packed = true]; 73 repeated sfixed32 rep_sfixed32= 29 [packed = true]; 74 repeated float rep_float = 30 [packed = true]; [all …]
|
/external/nanopb-c/tests/field_size_16_proto3/ |
D | alltypes.proto | 64 repeated int32 rep_int32 = 21 [packed = true]; 65 repeated int64 rep_int64 = 22 [packed = true]; 66 repeated uint32 rep_uint32 = 23 [packed = true]; 67 repeated uint64 rep_uint64 = 24 [packed = true]; 68 repeated sint32 rep_sint32 = 25 [packed = true]; 69 repeated sint64 rep_sint64 = 26 [packed = true]; 70 repeated bool rep_bool = 27 [packed = true]; 72 repeated fixed32 rep_fixed32 = 28 [packed = true]; 73 repeated sfixed32 rep_sfixed32= 29 [packed = true]; 74 repeated float rep_float = 30 [packed = true]; [all …]
|
/external/syzkaller/sys/linux/ |
D | vnet.txt | 42 } [packed] 51 } [packed] 77 } [packed] 84 } [packed] 89 } [packed] 96 } [packed] 100 } [packed] 128 } [packed] 133 } [packed] 157 } [packed] [all …]
|
/external/clang/test/Sema/ |
D | struct-packed-align.c | 7 int b __attribute__((packed)); 15 struct __attribute__((packed)) packed_s { 17 int b __attribute__((packed)); 33 struct __attribute__((packed)) packed_fas { 44 } __attribute__((packed)); 77 struct __attribute__((packed)) as3 { 90 void *args[] __attribute__((packed)); 94 union __attribute__((packed)) au4 {char c; int x;}; 104 struct as6 {char c; __attribute__((packed, aligned(2))) int x;}; 108 union au6 {char c; __attribute__((packed, aligned(2))) int x;}; [all …]
|