Home
last modified time | relevance | path

Searched refs:packed (Results 1 – 25 of 115) sorted by relevance

12345

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/test/java/com/google/protobuf/nano/
Dunittest_extension_packed_nano.proto13 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 …]
Dunittest_repeated_packables_nano.proto44 // One with none marked as packed and the other all packed. For
50 // All packable types, none marked as packed.
75 // all marked as packed.
77 repeated int32 int32s = 1 [ packed = true ];
78 repeated int64 int64s = 2 [ packed = true ];
79 repeated uint32 uint32s = 3 [ packed = true ];
80 repeated uint64 uint64s = 4 [ packed = true ];
81 repeated sint32 sint32s = 5 [ packed = true ];
82 repeated sint64 sint64s = 6 [ packed = true ];
83 repeated fixed32 fixed32s = 7 [ packed = true ];
[all …]
Dunittest_enum_validity_nano.proto17 repeated E packed_e = 4 [ packed = true ];
19 repeated E packed_e2 = 6 [ packed = true ];
21 repeated E packed_e3 = 8 [ packed = true ];
27 repeated E non_packed_e3_as_packed = 7 [ packed = true ];
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dunittest_proto3_lite.proto147 // 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 …]
Dunittest_proto3_arena.proto147 // 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 …]
Dunittest_proto3_arena_lite.proto148 // 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 …]
Dunittest_proto3.proto312 // Test messages for packed fields
315 repeated int32 packed_int32 = 90 [packed = true];
316 repeated int64 packed_int64 = 91 [packed = true];
317 repeated uint32 packed_uint32 = 92 [packed = true];
318 repeated uint64 packed_uint64 = 93 [packed = true];
319 repeated sint32 packed_sint32 = 94 [packed = true];
320 repeated sint64 packed_sint64 = 95 [packed = true];
321 repeated fixed32 packed_fixed32 = 96 [packed = true];
322 repeated fixed64 packed_fixed64 = 97 [packed = true];
323 repeated sfixed32 packed_sfixed32 = 98 [packed = true];
[all …]
Dunittest.proto701 // Test messages for packed fields
704 repeated int32 packed_int32 = 90 [packed = true];
705 repeated int64 packed_int64 = 91 [packed = true];
706 repeated uint32 packed_uint32 = 92 [packed = true];
707 repeated uint64 packed_uint64 = 93 [packed = true];
708 repeated sint32 packed_sint32 = 94 [packed = true];
709 repeated sint64 packed_sint64 = 95 [packed = true];
710 repeated fixed32 packed_fixed32 = 96 [packed = true];
711 repeated fixed64 packed_fixed64 = 97 [packed = true];
712 repeated sfixed32 packed_sfixed32 = 98 [packed = true];
[all …]
Dunittest_lite.proto179 repeated int32 packed_int32 = 90 [packed = true];
180 repeated int64 packed_int64 = 91 [packed = true];
181 repeated uint32 packed_uint32 = 92 [packed = true];
182 repeated uint64 packed_uint64 = 93 [packed = true];
183 repeated sint32 packed_sint32 = 94 [packed = true];
184 repeated sint64 packed_sint64 = 95 [packed = true];
185 repeated fixed32 packed_fixed32 = 96 [packed = true];
186 repeated fixed64 packed_fixed64 = 97 [packed = true];
187 repeated sfixed32 packed_sfixed32 = 98 [packed = true];
188 repeated sfixed64 packed_sfixed64 = 99 [packed = true];
[all …]
Dunittest_preserve_unknown_enum.proto54 repeated MyEnum repeated_packed_e = 3 [packed=true];
55 repeated MyEnumPlusExtra repeated_packed_unexpected_e = 4; // not packed
65 repeated MyEnumPlusExtra repeated_packed_e = 3 [packed=true];
66 repeated MyEnumPlusExtra repeated_packed_unexpected_e = 4 [packed=true];
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmAlphabetTest.java133 byte[] packed; in testBasic()
138 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
140 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
159 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
161 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
174 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
176 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
185 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
187 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
206 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/
Dtestbinary.proto89 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 …]
/frameworks/base/tests/ProtoInputStreamTests/src/com/android/test/protoinputstream/
Dtest.proto53 repeated double double_field_packed = 12 [packed=true];
57 repeated float float_field_packed = 22 [packed=true];
61 repeated int32 int32_field_packed = 32 [packed=true];
65 repeated int64 int64_field_packed = 42 [packed=true];
69 repeated uint32 uint32_field_packed = 52 [packed=true];
73 repeated uint64 uint64_field_packed = 62 [packed=true];
77 repeated sint32 sint32_field_packed = 72 [packed=true];
81 repeated sint64 sint64_field_packed = 82 [packed=true];
85 repeated fixed32 fixed32_field_packed = 92 [packed=true];
89 repeated fixed64 fixed64_field_packed = 102 [packed=true];
[all …]
/frameworks/base/tools/streaming_proto/test/
Dtest.proto59 repeated double double_field_packed = 12 [packed=true];
63 repeated float float_field_packed = 22 [packed=true];
67 repeated int32 int32_field_packed = 32 [packed=true];
71 repeated int64 int64_field_packed = 42 [packed=true];
75 repeated uint32 uint32_field_packed = 52 [packed=true];
79 repeated uint64 uint64_field_packed = 62 [packed=true];
83 repeated sint32 sint32_field_packed = 72 [packed=true];
87 repeated sint64 sint64_field_packed = 82 [packed=true];
91 repeated fixed32 fixed32_field_packed = 92 [packed=true];
95 repeated fixed64 fixed64_field_packed = 102 [packed=true];
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Dpacked_field_test.proto59 repeated int32 repeated_int32 = 1 [packed = false];
60 repeated int64 repeated_int64 = 2 [packed = false];
61 repeated uint32 repeated_uint32 = 3 [packed = false];
62 repeated uint64 repeated_uint64 = 4 [packed = false];
63 repeated sint32 repeated_sint32 = 5 [packed = false];
64 repeated sint64 repeated_sint64 = 6 [packed = false];
65 repeated fixed32 repeated_fixed32 = 7 [packed = false];
66 repeated fixed64 repeated_fixed64 = 8 [packed = false];
67 repeated sfixed32 repeated_sfixed32 = 9 [packed = false];
68 repeated sfixed64 repeated_sfixed64 = 10 [packed = false];
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/
Dunittest_lite.proto167 repeated int32 packed_int32 = 90 [packed = true];
168 repeated int64 packed_int64 = 91 [packed = true];
169 repeated uint32 packed_uint32 = 92 [packed = true];
170 repeated uint64 packed_uint64 = 93 [packed = true];
171 repeated sint32 packed_sint32 = 94 [packed = true];
172 repeated sint64 packed_sint64 = 95 [packed = true];
173 repeated fixed32 packed_fixed32 = 96 [packed = true];
174 repeated fixed64 packed_fixed64 = 97 [packed = true];
175 repeated sfixed32 packed_sfixed32 = 98 [packed = true];
176 repeated sfixed64 packed_sfixed64 = 99 [packed = true];
[all …]
Dunittest.proto562 // Test messages for packed fields
565 repeated int32 packed_int32 = 90 [packed = true];
566 repeated int64 packed_int64 = 91 [packed = true];
567 repeated uint32 packed_uint32 = 92 [packed = true];
568 repeated uint64 packed_uint64 = 93 [packed = true];
569 repeated sint32 packed_sint32 = 94 [packed = true];
570 repeated sint64 packed_sint64 = 95 [packed = true];
571 repeated fixed32 packed_fixed32 = 96 [packed = true];
572 repeated fixed64 packed_fixed64 = 97 [packed = true];
573 repeated sfixed32 packed_sfixed32 = 98 [packed = true];
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/
Dunittest_lite.proto167 repeated int32 packed_int32 = 90 [packed = true];
168 repeated int64 packed_int64 = 91 [packed = true];
169 repeated uint32 packed_uint32 = 92 [packed = true];
170 repeated uint64 packed_uint64 = 93 [packed = true];
171 repeated sint32 packed_sint32 = 94 [packed = true];
172 repeated sint64 packed_sint64 = 95 [packed = true];
173 repeated fixed32 packed_fixed32 = 96 [packed = true];
174 repeated fixed64 packed_fixed64 = 97 [packed = true];
175 repeated sfixed32 packed_sfixed32 = 98 [packed = true];
176 repeated sfixed64 packed_sfixed64 = 99 [packed = true];
[all …]
Dunittest.proto562 // Test messages for packed fields
565 repeated int32 packed_int32 = 90 [packed = true];
566 repeated int64 packed_int64 = 91 [packed = true];
567 repeated uint32 packed_uint32 = 92 [packed = true];
568 repeated uint64 packed_uint64 = 93 [packed = true];
569 repeated sint32 packed_sint32 = 94 [packed = true];
570 repeated sint64 packed_sint64 = 95 [packed = true];
571 repeated fixed32 packed_fixed32 = 96 [packed = true];
572 repeated fixed64 packed_fixed64 = 97 [packed = true];
573 repeated sfixed32 packed_sfixed32 = 98 [packed = true];
[all …]
/frameworks/av/media/mtp/
DMtpDescriptors.h46 } __attribute__((packed));
56 } __attribute__((packed));
64 } __attribute__((packed)) header;
66 } __attribute__((packed));
79 } __attribute__((packed));
91 } __attribute__((packed));
96 } __attribute__((packed));
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/testdata/
Dbooks.proto89 repeated bool alive = 4 [packed=true]; // Optional to repeated.
137 // Test packed versions of all repeated primitives.
138 // The field numbers should match their non-packed version in Primitive message.
141 repeated fixed32 rep_fix32 = 16 [packed=true];
142 repeated uint32 rep_u32 = 17 [packed=true];
143 repeated int32 rep_i32 = 18 [packed=true];
144 repeated sfixed32 rep_sf32 = 19 [packed=true];
145 repeated sint32 rep_s32 = 20 [packed=true];
148 repeated fixed64 rep_fix64 = 21 [packed=true];
149 repeated uint64 rep_u64 = 22 [packed=true];
[all …]
/frameworks/base/graphics/java/android/graphics/fonts/
DFontFileUtil.java37 public static int unpackWeight(int packed) { in unpackWeight() argument
38 return packed & 0xFFFF; in unpackWeight()
44 public static boolean unpackItalic(int packed) { in unpackItalic() argument
45 return (packed & 0x10000) != 0; in unpackItalic()
51 public static boolean isSuccess(int packed) { in isSuccess() argument
52 return packed != ANALYZE_ERROR; in isSuccess()
/frameworks/base/core/tests/coretests/src/android/graphics/
DFontFileUtilTest.java109 int packed = FontFileUtil.analyzeStyle(buffer, 0, null); in testRegularFonts() local
110 assertEquals(path, weight, FontFileUtil.unpackWeight(packed)); in testRegularFonts()
111 assertEquals(path, italic, FontFileUtil.unpackItalic(packed)); in testRegularFonts()
125 int packed = FontFileUtil.analyzeStyle(buffer, ttcIndex, null); in testTtcFont() local
126 assertEquals(path + "#" + ttcIndex, weight, FontFileUtil.unpackWeight(packed)); in testTtcFont()
127 assertEquals(path + "#" + ttcIndex, italic, FontFileUtil.unpackItalic(packed)); in testTtcFont()
141 int packed = FontFileUtil.analyzeStyle(buffer, 0, in testVariationFont() local
143 assertEquals(path + "#" + axes, weight, FontFileUtil.unpackWeight(packed)); in testVariationFont()
144 assertEquals(path + "#" + axes, italic, FontFileUtil.unpackItalic(packed)); in testVariationFont()
/frameworks/rs/script_api/include/
Drs_value_types.rsh106 * Vector version of the half float type. Provides two half fields packed
116 * Vector version of the half float type. Provides three half fields packed
126 * Vector version of the half float type. Provides four half fields packed
258 * A vector of two floats. These two floats are packed into a single 64 bit field
261 * A vector of two floats. These two floats are packed into a single 64 bit field
269 * A vector of three floats. These three floats are packed into a single 128 bit field
277 * A vector of four floats type. These four floats are packed into a single 128 bit field
285 * A vector of two doubles. These two double fields packed into a single 128 bit field
293 * A vector of three doubles. These three double fields packed into a single 256 bit field
301 * A vector of four doubles. These four double fields packed into a single 256 bit field
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DInput.java34 public boolean packed; field in Input
49 packed = false; in Input()
65 packed = in.readInt() == 1 ? true : false; in Input()
87 dest.writeInt(packed ? 1 : 0); in writeToParcel()

12345