Home
last modified time | relevance | path

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

12345678910>>...15

/third_party/skia/src/core/
H A DSkFont_serial.cpp14 // packed int at the beginning of the serialized font:
48 uint32_t packed = 0; in Flatten() local
49 packed |= font.fFlags << kShift_For_Flags; in Flatten()
50 packed |= font.fEdging << kShift_For_Edging; in Flatten()
51 packed |= font.fHinting << kShift_For_Hinting; in Flatten()
54 packed |= kSize_Is_Byte_Bit; in Flatten()
55 packed |= (int)font.fSize << kShift_for_Size; in Flatten()
58 packed |= kHas_ScaleX_Bit; in Flatten()
61 packed |= kHas_SkewX_Bit; in Flatten()
64 packed | in Flatten()
83 const uint32_t packed = buffer.read32(); Unflatten() local
[all...]
H A DSkPath_serial.cpp44 static unsigned extract_version(uint32_t packed) { in extract_version() argument
45 return packed & kVersion_SerializationMask; in extract_version()
48 static SkPathFillType extract_filltype(uint32_t packed) { in extract_filltype() argument
49 return static_cast<SkPathFillType>((packed >> kFillType_SerializationShift) & 0x3); in extract_filltype()
52 static SerializationType extract_serializationtype(uint32_t packed) { in extract_serializationtype() argument
53 return static_cast<SerializationType>((packed >> kType_SerializationShift) & 0xF); in extract_serializationtype()
71 // packed header, rrect, start index. in writeToMemoryAsRRect()
78 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemoryAsRRect() local
84 buffer.write32(packed); in writeToMemoryAsRRect()
99 int32_t packed in writeToMemory() local
146 uint32_t packed; readFromMemory() local
163 uint32_t packed; readAsRRect() local
201 uint32_t packed; readFromMemory_EQ4Or5() local
[all...]
H A DSkPaint.cpp251 uint32_t packed = 0; in pack_v68() local
256 packed |= shift_bits(((unsigned)paint.isDither() << 1) | in pack_v68()
258 packed |= shift_bits(mode, 8, 8); in pack_v68()
259 packed |= shift_bits(paint.getStrokeCap(), 16, 2); in pack_v68()
260 packed |= shift_bits(paint.getStrokeJoin(), 18, 2); in pack_v68()
261 packed |= shift_bits(paint.getStyle(), 20, 2); in pack_v68()
262 packed |= shift_bits(0, 22, 2); // was filterquality in pack_v68()
263 packed |= shift_bits(flatFlags, 24, 8); in pack_v68()
264 return packed; in pack_v68()
267 static uint32_t unpack_v68(SkPaint* paint, uint32_t packed, SkSafeRang argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderImage.cpp760 // Gather packed texel data. Texels larger than 4 bytes occupy multiple SIMD::Int elements. in EmitImageRead()
762 SIMD::Int packed[4]; in EmitImageRead() local
767 packed[i] = texelPtr.Load<SIMD::Int>(robustness, state->activeLaneMask()); in EmitImageRead()
780 packed[0] = Insert(packed[0], Int(*Pointer<Short>(texelPtr.base + Extract(offsets, i))), i); in EmitImageRead()
793 packed[0] = Insert(packed[0], Int(*Pointer<Byte>(texelPtr.base + Extract(offsets, i))), i); in EmitImageRead()
808 dst.move(0, packed[0]); in EmitImageRead()
809 dst.move(1, packed[1]); in EmitImageRead()
810 dst.move(2, packed[ in EmitImageRead()
1187 SIMD::Int packed[4]; WriteImage() local
[all...]
/third_party/alsa-lib/include/sound/uapi/
H A Dasoc.h205 } __attribute__((packed));
211 } __attribute__((packed));
217 } __attribute__((packed));
223 } __attribute__((packed));
234 } __attribute__((packed));
247 } __attribute__((packed));
256 } __attribute__((packed));
265 } __attribute__((packed));
275 } __attribute__((packed));
286 } __attribute__((packed));
[all...]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_yuv.c50 * Extract Y, U, V channels from packed UYVY.
51 * @param packed is a <n x i32> vector with the packed UYVY blocks
57 LLVMValueRef packed, in uyvy_to_yuv_soa()
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_ve in uyvy_to_yuv_soa()
55 uyvy_to_yuv_soa(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i, LLVMValueRef *y, LLVMValueRef *u, LLVMValueRef *v) uyvy_to_yuv_soa() argument
139 yuyv_to_yuv_soa(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i, LLVMValueRef *y, LLVMValueRef *u, LLVMValueRef *v) yuyv_to_yuv_soa() argument
364 uyvy_to_rgba_aos(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i) uyvy_to_rgba_aos() argument
385 yuyv_to_rgba_aos(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i) yuyv_to_rgba_aos() argument
406 rgbg_to_rgba_aos(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i) rgbg_to_rgba_aos() argument
425 grgb_to_rgba_aos(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i) grgb_to_rgba_aos() argument
443 grbr_to_rgba_aos(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i) grbr_to_rgba_aos() argument
462 rgrb_to_rgba_aos(struct gallivm_state *gallivm, unsigned n, LLVMValueRef packed, LLVMValueRef i) rgrb_to_rgba_aos() argument
491 LLVMValueRef packed; lp_build_fetch_subsampled_rgba_aos() local
[all...]
H A Dlp_bld_format_soa.c125 LLVMValueRef packed) in lp_build_extract_soa_chan()
130 LLVMValueRef input = packed; in lp_build_extract_soa_chan()
282 * It takes a vector of packed pixels:
284 * packed = {P0, P1, P2, P3, ..., Pn}
293 * It requires that a packed pixel fits into an element of the output
297 * \param format_desc the format of the 'packed' incoming pixel vector
299 * \param packed the incoming vector of packed pixels
306 LLVMValueRef packed, in lp_build_unpack_rgba_soa()
336 packed); in lp_build_unpack_rgba_soa()
121 lp_build_extract_soa_chan(struct lp_build_context *bld, unsigned blockbits, boolean srgb_chan, struct util_format_channel_description chan_desc, LLVMValueRef packed) lp_build_extract_soa_chan() argument
303 lp_build_unpack_rgba_soa(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type type, LLVMValueRef packed, LLVMValueRef rgba_out[4]) lp_build_unpack_rgba_soa() argument
355 lp_build_rgba8_to_fi32_soa(struct gallivm_state *gallivm, struct lp_type dst_type, LLVMValueRef packed, LLVMValueRef *rgba) lp_build_rgba8_to_fi32_soa() argument
447 LLVMValueRef packed; lp_build_fetch_rgba_soa() local
495 LLVMValueRef packed[4], dst[4], output[4], shuffles[LP_MAX_VECTOR_WIDTH/32]; lp_build_fetch_rgba_soa() local
687 LLVMValueRef packed; lp_build_fetch_rgba_soa() local
712 LLVMValueRef packed; lp_build_fetch_rgba_soa() local
757 LLVMValueRef packed, rgba[4]; lp_build_fetch_rgba_soa() local
982 lp_build_pack_rgba_soa(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type type, const LLVMValueRef rgba_in[4], LLVMValueRef *packed) lp_build_pack_rgba_soa() argument
1023 LLVMValueRef packed[4]; lp_build_store_rgba_soa() local
[all...]
H A Dlp_bld_format_aos.c215 * @param desc the pixel format for the packed pixel value
216 * @param packed integer pixel in a format such as PIPE_FORMAT_B8G8R8A8_UNORM
223 LLVMValueRef packed) in lp_build_unpack_arith_rgba_aos()
244 assert (LLVMTypeOf(packed) == LLVMInt32TypeInContext(gallivm->context)); in lp_build_unpack_arith_rgba_aos()
248 /* Broadcast the packed value to all four channels in lp_build_unpack_arith_rgba_aos()
249 * before: packed = BGRA in lp_build_unpack_arith_rgba_aos()
250 * after: packed = {BGRA, BGRA, BGRA, BGRA} in lp_build_unpack_arith_rgba_aos()
252 packed = LLVMBuildInsertElement(builder, LLVMGetUndef(vec32_type), packed, in lp_build_unpack_arith_rgba_aos()
255 packed in lp_build_unpack_arith_rgba_aos()
221 lp_build_unpack_arith_rgba_aos(struct gallivm_state *gallivm, const struct util_format_description *desc, LLVMValueRef packed) lp_build_unpack_arith_rgba_aos() argument
370 LLVMValueRef packed = NULL; lp_build_pack_rgba_aos() local
503 LLVMValueRef packed; lp_build_fetch_rgba_aos() local
538 LLVMValueRef packed, res = NULL, chans[4], rgba[4]; lp_build_fetch_rgba_aos() local
639 LLVMValueRef packed; lp_build_fetch_rgba_aos() local
[all...]
/third_party/alsa-utils/topology/nhlt/intel/ssp/
H A Dssp-intel.h31 } __attribute__((packed));
53 } __attribute__((packed));
59 } __attribute__((packed));
64 } __attribute__((packed));
69 } __attribute__((packed));
78 } __attribute__((packed));
82 } __attribute__((packed));
87 } __attribute__((packed));
92 } __attribute__((packed));
96 } __attribute__((packed));
[all...]
/third_party/alsa-utils/topology/nhlt/
H A Dnhlt.h80 } __attribute__((packed));
85 } __attribute__((packed));
90 } __attribute__((packed));
95 } __attribute__((packed));
111 } __attribute__((packed));
117 } __attribute__((packed));
125 } __attribute__((packed));
138 } __attribute__((packed));
143 } __attribute__((packed));
148 } __attribute__((packed));
[all...]
/third_party/mesa3d/src/util/tests/format/
H A Du_format_test.c59 const uint8_t *packed, in print_packed()
67 printf("%s%02x", sep, packed[i]); in print_packed()
217 fetch_rgba(unpacked[i][j], test->packed, j, i); in test_format_fetch_rgba()
249 test->packed, 0, in test_format_unpack_rgba()
284 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; in test_format_pack_rgba_float() local
290 * Skip S3TC as packed representation is not canonical. in test_format_pack_rgba_float()
297 memset(packed, 0, sizeof packed); in test_format_pack_rgba_float()
306 pack->pack_rgba_float(packed, 0, in test_format_pack_rgba_float()
312 if ((test->packed[ in test_format_pack_rgba_float()
57 print_packed(const struct util_format_description *format_desc, const char *prefix, const uint8_t *packed, const char *suffix) print_packed() argument
407 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; test_format_pack_rgba_8unorm() local
503 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; test_format_pack_z_float() local
581 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; test_format_pack_z_32unorm() local
660 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; test_format_pack_s_8uint() local
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_format_convert.h89 nir_format_unpack_int(nir_builder *b, nir_ssa_def *packed, in nir_format_unpack_int() argument
94 const unsigned bit_size = packed->bit_size; in nir_format_unpack_int()
100 return packed; in nir_format_unpack_int()
108 nir_ssa_def *chan = nir_channel(b, packed, next_chan); in nir_format_unpack_int()
126 nir_format_unpack_uint(nir_builder *b, nir_ssa_def *packed,
129 return nir_format_unpack_int(b, packed, bits, num_components, false);
133 nir_format_unpack_sint(nir_builder *b, nir_ssa_def *packed,
136 return nir_format_unpack_int(b, packed, bits, num_components, true);
144 nir_ssa_def *packed = nir_imm_int(b, 0); local
147 packed
160 nir_ssa_def *packed = nir_imm_int(b, 0); nir_format_pack_uint_unmasked_ssa() local
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DWriter.java140 void writeInt32List(int fieldNumber, List<Integer> value, boolean packed) throws IOException; in writeInt32List() argument
143 void writeFixed32List(int fieldNumber, List<Integer> value, boolean packed) throws IOException; in writeFixed32List() argument
146 void writeInt64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeInt64List() argument
149 void writeUInt64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeUInt64List() argument
152 void writeFixed64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeFixed64List() argument
155 void writeFloatList(int fieldNumber, List<Float> value, boolean packed) throws IOException; in writeFloatList() argument
158 void writeDoubleList(int fieldNumber, List<Double> value, boolean packed) throws IOException; in writeDoubleList() argument
161 void writeEnumList(int fieldNumber, List<Integer> value, boolean packed) throws IOException; in writeEnumList() argument
164 void writeBoolList(int fieldNumber, List<Boolean> value, boolean packed) throws IOException; in writeBoolList() argument
173 void writeUInt32List(int fieldNumber, List<Integer> value, boolean packed) throw argument
176 writeSFixed32List(int fieldNumber, List<Integer> value, boolean packed) writeSFixed32List() argument
179 writeSFixed64List(int fieldNumber, List<Long> value, boolean packed) writeSFixed64List() argument
182 writeSInt32List(int fieldNumber, List<Integer> value, boolean packed) writeSInt32List() argument
185 writeSInt64List(int fieldNumber, List<Long> value, boolean packed) writeSInt64List() argument
[all...]
H A DSchemaUtil.java183 int fieldNumber, List<Double> value, Writer writer, boolean packed) throws IOException { in writeDoubleList()
185 writer.writeDoubleList(fieldNumber, value, packed); in writeDoubleList()
190 int fieldNumber, List<Float> value, Writer writer, boolean packed) throws IOException { in writeFloatList()
192 writer.writeFloatList(fieldNumber, value, packed); in writeFloatList()
197 int fieldNumber, List<Long> value, Writer writer, boolean packed) throws IOException { in writeInt64List()
199 writer.writeInt64List(fieldNumber, value, packed); in writeInt64List()
204 int fieldNumber, List<Long> value, Writer writer, boolean packed) throws IOException { in writeUInt64List()
206 writer.writeUInt64List(fieldNumber, value, packed); in writeUInt64List()
211 int fieldNumber, List<Long> value, Writer writer, boolean packed) throws IOException { in writeSInt64List()
213 writer.writeSInt64List(fieldNumber, value, packed); in writeSInt64List()
182 writeDoubleList( int fieldNumber, List<Double> value, Writer writer, boolean packed) writeDoubleList() argument
189 writeFloatList( int fieldNumber, List<Float> value, Writer writer, boolean packed) writeFloatList() argument
196 writeInt64List( int fieldNumber, List<Long> value, Writer writer, boolean packed) writeInt64List() argument
203 writeUInt64List( int fieldNumber, List<Long> value, Writer writer, boolean packed) writeUInt64List() argument
210 writeSInt64List( int fieldNumber, List<Long> value, Writer writer, boolean packed) writeSInt64List() argument
217 writeFixed64List( int fieldNumber, List<Long> value, Writer writer, boolean packed) writeFixed64List() argument
224 writeSFixed64List( int fieldNumber, List<Long> value, Writer writer, boolean packed) writeSFixed64List() argument
231 writeInt32List( int fieldNumber, List<Integer> value, Writer writer, boolean packed) writeInt32List() argument
238 writeUInt32List( int fieldNumber, List<Integer> value, Writer writer, boolean packed) writeUInt32List() argument
245 writeSInt32List( int fieldNumber, List<Integer> value, Writer writer, boolean packed) writeSInt32List() argument
252 writeFixed32List( int fieldNumber, List<Integer> value, Writer writer, boolean packed) writeFixed32List() argument
259 writeSFixed32List( int fieldNumber, List<Integer> value, Writer writer, boolean packed) writeSFixed32List() argument
266 writeEnumList( int fieldNumber, List<Integer> value, Writer writer, boolean packed) writeEnumList() argument
273 writeBoolList( int fieldNumber, List<Boolean> value, Writer writer, boolean packed) writeBoolList() argument
352 computeSizeInt64List(int fieldNumber, List<Long> list, boolean packed) computeSizeInt64List() argument
388 computeSizeUInt64List(int fieldNumber, List<Long> list, boolean packed) computeSizeUInt64List() argument
424 computeSizeSInt64List(int fieldNumber, List<Long> list, boolean packed) computeSizeSInt64List() argument
460 computeSizeEnumList(int fieldNumber, List<Integer> list, boolean packed) computeSizeEnumList() argument
496 computeSizeInt32List(int fieldNumber, List<Integer> list, boolean packed) computeSizeInt32List() argument
532 computeSizeUInt32List(int fieldNumber, List<Integer> list, boolean packed) computeSizeUInt32List() argument
568 computeSizeSInt32List(int fieldNumber, List<Integer> list, boolean packed) computeSizeSInt32List() argument
588 computeSizeFixed32List(int fieldNumber, List<?> list, boolean packed) computeSizeFixed32List() argument
606 computeSizeFixed64List(int fieldNumber, List<?> list, boolean packed) computeSizeFixed64List() argument
625 computeSizeBoolList(int fieldNumber, List<?> list, boolean packed) computeSizeBoolList() argument
[all...]
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_clear.c35 /* Clear colours are packed as the internal format of the tilebuffer, looked up
42 * tilebuffer for dithering. These have a packed fixed-point representation:
50 pan_pack_color_32(uint32_t *packed, uint32_t v) in pan_pack_color_32() argument
53 packed[i] = v; in pan_pack_color_32()
94 pan_pack_raw(uint32_t *packed, const union pipe_color_union *color, enum pipe_format format) in pan_pack_raw() argument
104 pan_pack_color_32(packed, s | (s << 16)); in pan_pack_raw()
106 pan_pack_color_32(packed, out.ui[0] | (out.ui[0] << 16)); in pan_pack_raw()
108 pan_pack_color_32(packed, out.ui[0]); in pan_pack_raw()
110 memcpy(packed + 0, out.ui, 8); in pan_pack_raw()
111 memcpy(packed in pan_pack_raw()
118 pan_pack_color(uint32_t *packed, const union pipe_color_union *color, enum pipe_format format, bool dithered) pan_pack_color() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_format.c74 (*fetch_ptr_t)(void *unpacked, const void *packed,
146 alignas(16) uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; in test_format_float() local
180 memcpy(packed, test->packed, sizeof packed); in test_format_float()
188 fetch_ptr(unpacked, packed, j, i, use_cache ? cache_ptr : NULL); in test_format_float()
213 test->packed[0], test->packed[1], test->packed[2], test->packed[ in test_format_float()
250 alignas(16) uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; test_format_unorm8() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_tile.c388 void *packed; in pipe_get_tile_rgba() local
394 packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format)); in pipe_get_tile_rgba()
395 if (!packed) { in pipe_get_tile_rgba()
403 pipe_get_tile_raw(pt, src, x, y, w, h, packed, 0); in pipe_get_tile_rgba()
407 z16_get_tile_rgba((ushort *) packed, w, h, dst, dst_stride); in pipe_get_tile_rgba()
410 z32_get_tile_rgba((unsigned *) packed, w, h, dst, dst_stride); in pipe_get_tile_rgba()
414 s8z24_get_tile_rgba((unsigned *) packed, w, h, dst, dst_stride); in pipe_get_tile_rgba()
417 s8_get_tile_rgba((unsigned char *) packed, w, h, dst, dst_stride); in pipe_get_tile_rgba()
420 s8x24_get_tile_rgba((unsigned *) packed, w, h, dst, dst_stride); in pipe_get_tile_rgba()
424 z24s8_get_tile_rgba((unsigned *) packed, in pipe_get_tile_rgba()
[all...]
/third_party/pulseaudio/src/modules/bluetooth/
H A Da2dp-codecs.h273 } __attribute__ ((packed)) a2dp_vendor_codec_t;
301 } __attribute__ ((packed)) a2dp_aptx_ll_new_caps_t;
307 } __attribute__ ((packed)) a2dp_ldac_t;
320 } __attribute__ ((packed)) a2dp_sbc_t;
332 } __attribute__ ((packed)) a2dp_mpeg_t;
344 } __attribute__ ((packed)) a2dp_aac_t;
350 } __attribute__ ((packed)) a2dp_aptx_t;
357 } __attribute__ ((packed)) a2dp_faststream_t;
365 } __attribute__ ((packed)) a2dp_aptx_ll_t;
378 } __attribute__ ((packed)) a2dp_sbc_
[all...]
/third_party/mesa3d/src/broadcom/qpu/
H A Dqpu_pack.c627 v3d_qpu_float32_unpack_unpack(uint32_t packed, in v3d_qpu_float32_unpack_unpack() argument
630 switch (packed) { in v3d_qpu_float32_unpack_unpack()
650 uint32_t *packed) in v3d_qpu_float32_unpack_pack()
654 *packed = 0; in v3d_qpu_float32_unpack_pack()
657 *packed = 1; in v3d_qpu_float32_unpack_pack()
660 *packed = 2; in v3d_qpu_float32_unpack_pack()
663 *packed = 3; in v3d_qpu_float32_unpack_pack()
671 v3d_qpu_float16_unpack_unpack(uint32_t packed, in v3d_qpu_float16_unpack_unpack() argument
674 switch (packed) { in v3d_qpu_float16_unpack_unpack()
697 uint32_t *packed) in v3d_qpu_float16_unpack_pack()
649 v3d_qpu_float32_unpack_pack(enum v3d_qpu_input_unpack unpacked, uint32_t *packed) v3d_qpu_float32_unpack_pack() argument
696 v3d_qpu_float16_unpack_pack(enum v3d_qpu_input_unpack unpacked, uint32_t *packed) v3d_qpu_float16_unpack_pack() argument
721 v3d_qpu_float32_pack_pack(enum v3d_qpu_input_unpack unpacked, uint32_t *packed) v3d_qpu_float32_pack_pack() argument
1130 uint32_t packed; v3d_qpu_add_pack() local
1228 uint32_t packed; v3d_qpu_mul_pack() local
1254 uint32_t packed; v3d_qpu_mul_pack() local
1272 uint32_t packed; v3d_qpu_mul_pack() local
[all...]
/third_party/mesa3d/src/broadcom/compiler/
H A Dv3d33_vpm_setup.c49 uint32_t packed; in v3d33_vir_vpm_read_setup() local
51 (uint8_t *)&packed, in v3d33_vir_vpm_read_setup()
53 vir_VPMSETUP(c, vir_uniform_ui(c, packed)); in v3d33_vir_vpm_read_setup()
59 uint32_t packed; in v3d33_vir_vpm_write_setup() local
72 (uint8_t *)&packed, in v3d33_vir_vpm_write_setup()
74 vir_VPMSETUP(c, vir_uniform_ui(c, packed)); in v3d33_vir_vpm_write_setup()
/third_party/mesa3d/src/imagination/csbgen/
H A Dpvr_packet_helpers.h86 __pvr_uint_unpack(uint64_t packed, uint32_t start, uint32_t end) in __pvr_uint_unpack() argument
91 return (packed >> start) & mask; in __pvr_uint_unpack()
115 __pvr_sint_unpack(uint64_t packed, uint32_t start, uint32_t end) in __pvr_sint_unpack() argument
120 return (int64_t)((packed >> start) & mask); in __pvr_sint_unpack()
139 __pvr_offset_unpack(uint64_t packed, in __pvr_offset_unpack() argument
146 assert((packed & ~mask) == 0); in __pvr_offset_unpack()
149 return packed; in __pvr_offset_unpack()
165 __pvr_address_unpack(uint64_t packed, in __pvr_address_unpack() argument
171 uint64_t addr_u64 = ((packed & mask) >> start) << shift; in __pvr_address_unpack()
183 __pvr_float_unpack(uint32_t packed) in __pvr_float_unpack() argument
[all...]
/third_party/mesa3d/src/asahi/lib/
H A Dio.h129 } __attribute__((packed));
136 } __attribute__((packed));
146 } __attribute__((packed));
161 } __attribute__((packed));
209 } __attribute__((packed));
240 } __attribute__((packed));
272 } __attribute__((packed));
281 } __attribute__((packed));
/third_party/skia/include/core/
H A DSkColorPriv.h90 #define SkGetPackedA32(packed) ((uint32_t)((packed) << (24 - SK_A32_SHIFT)) >> 24)
91 #define SkGetPackedR32(packed) ((uint32_t)((packed) << (24 - SK_R32_SHIFT)) >> 24)
92 #define SkGetPackedG32(packed) ((uint32_t)((packed) << (24 - SK_G32_SHIFT)) >> 24)
93 #define SkGetPackedB32(packed) ((uint32_t)((packed) << (24 - SK_B32_SHIFT)) >> 24)
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DFieldDescriptor.php48 private $packed; variable
162 public function setPacked($packed)
164 $this->packed = $packed; variable
169 return $this->packed;
239 $packed = true; variable
241 $packed = false; variable
245 $packed = $options->getPacked(); variable
270 $field->setPacked($packed);
/third_party/alsa-lib/include/
H A Dump_msg.h35 } __attribute((packed)) snd_ump_msg_hdr_t;
54 } __attribute((packed)) snd_ump_msg_midi1_note_t;
73 } __attribute((packed)) snd_ump_msg_midi1_paf_t;
92 } __attribute((packed)) snd_ump_msg_midi1_cc_t;
111 } __attribute((packed)) snd_ump_msg_midi1_program_t;
130 } __attribute((packed)) snd_ump_msg_midi1_caf_t;
149 } __attribute((packed)) snd_ump_msg_midi1_pitchbend_t;
166 } __attribute((packed)) snd_ump_msg_system_t;
213 } __attribute((packed)) snd_ump_msg_midi2_note_t;
236 } __attribute((packed)) snd_ump_msg_midi2_paf_
[all...]

Completed in 18 milliseconds

12345678910>>...15