Home
last modified time | relevance | path

Searched refs:I8 (Results 1 – 25 of 125) sorted by relevance

12345

/third_party/rust/crates/serde/test_suite/tests/
Dtest_de_error.rs204 test(&[Token::I8(-1)], "invalid value: integer `-1`, expected u8"); in test_u8()
251 &[Token::I8(-1)], in test_u16()
292 &[Token::I8(-1)], in test_u32()
325 &[Token::I8(-1)], in test_u64()
355 &[Token::I8(-1)], in test_u128()
385 &[Token::I8(-1)], in test_usize()
408 &[Token::I8(0)], in test_nonzero_i8()
491 &[Token::I8(0)], in test_nonzero_i16()
562 &[Token::I8(0)], in test_nonzero_i32()
621 &[Token::I8(0)], in test_nonzero_i64()
[all …]
Dtest_de.rs221 test(-128, &[Token::I8(-128)]); in test_i8()
225 test(127, &[Token::I8(127)]); in test_i8()
246 test(-128, &[Token::I8(-128)]); in test_i16()
250 test(127, &[Token::I8(127)]); in test_i16()
271 test(-128, &[Token::I8(-128)]); in test_i32()
275 test(127, &[Token::I8(127)]); in test_i32()
296 test(-128, &[Token::I8(-128)]); in test_i64()
300 test(127, &[Token::I8(127)]); in test_i64()
321 test(-128, &[Token::I8(-128)]); in test_i128()
325 test(127, &[Token::I8(127)]); in test_i128()
[all …]
Dtest_annotations.rs386 Token::I8(8), in test_no_std_default()
704 Token::I8(0), in test_rename_enum()
716 Token::I8(0), in test_rename_enum()
717 Token::I8(1), in test_rename_enum()
748 Token::I8(0), in test_rename_enum()
767 Token::I8(0), in test_rename_enum()
783 Token::I8(0), in test_rename_enum()
785 Token::I8(1), in test_rename_enum()
787 Token::I8(2), in test_rename_enum()
801 Token::I8(0), in test_rename_enum()
[all …]
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dmips_macro.h42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument
46 "ulw %[" #O3 "], " #I4 "+" XSTR(I9) "*" #I8 "(%[" #I0 "]) \n\t"
162 I8, I9, I10, I11, I12, I13) \ argument
183 "usw %[" #IO0 "], " XSTR(I13) "*" #I9 "(%[" #I8 "]) \n\t" \
184 "usw %[" #IO2 "], " XSTR(I13) "*" #I10 "(%[" #I8 "]) \n\t" \
185 "usw %[" #IO4 "], " XSTR(I13) "*" #I11 "(%[" #I8 "]) \n\t" \
186 "usw %[" #IO6 "], " XSTR(I13) "*" #I12 "(%[" #I8 "]) \n\t"
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Dmips_macro.h42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument
46 "ulw %[" #O3 "], " #I4 "+" XSTR(I9) "*" #I8 "(%[" #I0 "]) \n\t"
162 I8, I9, I10, I11, I12, I13) \ argument
183 "usw %[" #IO0 "], " XSTR(I13) "*" #I9 "(%[" #I8 "]) \n\t" \
184 "usw %[" #IO2 "], " XSTR(I13) "*" #I10 "(%[" #I8 "]) \n\t" \
185 "usw %[" #IO4 "], " XSTR(I13) "*" #I11 "(%[" #I8 "]) \n\t" \
186 "usw %[" #IO6 "], " XSTR(I13) "*" #I12 "(%[" #I8 "]) \n\t"
/third_party/typescript/tests/baselines/reference/
DsubtypesOfUnion.symbols7 interface I8 { [x: string]: number[]; }
8 >I8 : Symbol(I8, Decl(subtypesOfUnion.ts, 0, 17))
72 foo9: I8; // error
74 >I8 : Symbol(I8, Decl(subtypesOfUnion.ts, 0, 17))
150 foo9: I8; // error
152 >I8 : Symbol(I8, Decl(subtypesOfUnion.ts, 0, 17))
DsubtypesOfUnion.types7 interface I8 { [x: string]: number[]; }
65 foo9: I8; // error
66 >foo9 : I8
128 foo9: I8; // error
129 >foo9 : I8
DenumAssignabilityInInheritance.types149 interface I8 { foo: string; }
152 declare function foo8(x: I8): I8;
153 >foo8 : { (x: I8): I8; (x: E): E; }
154 >x : I8
157 >foo8 : { (x: I8): I8; (x: E): E; }
163 >foo8 : { (x: I8): I8; (x: E): E; }
DsubtypesOfUnion.js3 interface I8 { [x: string]: number[]; }
22 foo9: I8; // error
43 foo9: I8; // error
DsubtypesOfAny.symbols84 interface I8 {
85 >I8 : Symbol(I8, Decl(subtypesOfAny.ts, 41, 1))
91 >foo : Symbol(I8.foo, Decl(subtypesOfAny.ts, 45, 21))
101 foo: I8;
103 >I8 : Symbol(I8, Decl(subtypesOfAny.ts, 41, 1))
DanyAssignabilityInInheritance.types115 interface I8 { foo: string }
118 declare function foo9(x: I8): I8;
119 >foo9 : { (x: I8): I8; (x: any): any; }
120 >x : I8
123 >foo9 : { (x: I8): I8; (x: any): any; }
DanyAssignableToEveryType2.symbols84 interface I8 {
85 >I8 : Symbol(I8, Decl(anyAssignableToEveryType2.ts, 41, 1))
91 >foo : Symbol(I8.foo, Decl(anyAssignableToEveryType2.ts, 45, 26))
98 [x: string]: I8;
100 >I8 : Symbol(I8, Decl(anyAssignableToEveryType2.ts, 41, 1))
DenumIsNotASubtypeOfAnythingButNumber.symbols95 interface I8 {
96 >I8 : Symbol(I8, Decl(enumIsNotASubtypeOfAnythingButNumber.ts, 42, 1))
102 >foo : Symbol(I8.foo, Decl(enumIsNotASubtypeOfAnythingButNumber.ts, 46, 26))
110 [x: string]: I8;
112 >I8 : Symbol(I8, Decl(enumIsNotASubtypeOfAnythingButNumber.ts, 42, 1))
DunionSubtypeIfEveryConstituentTypeIsSubtype.symbols119 interface I8 {
120 >I8 : Symbol(I8, Decl(unionSubtypeIfEveryConstituentTypeIsSubtype.ts, 50, 1))
126 >foo : Symbol(I8.foo, Decl(unionSubtypeIfEveryConstituentTypeIsSubtype.ts, 54, 26))
129 >foo2 : Symbol(I8.foo2, Decl(unionSubtypeIfEveryConstituentTypeIsSubtype.ts, 55, 25))
137 [x: string]: I8;
139 >I8 : Symbol(I8, Decl(unionSubtypeIfEveryConstituentTypeIsSubtype.ts, 50, 1))
DsubtypesOfAny.types68 interface I8 {
81 foo: I8;
82 >foo : I8
DanyAssignabilityInInheritance.js39 interface I8 { foo: string }
40 declare function foo9(x: I8): I8;
DanyAssignabilityInInheritance.symbols114 interface I8 { foo: string }
115 >I8 : Symbol(I8, Decl(anyAssignabilityInInheritance.ts, 35, 17))
116 >foo : Symbol(I8.foo, Decl(anyAssignabilityInInheritance.ts, 37, 14))
118 declare function foo9(x: I8): I8;
121 >I8 : Symbol(I8, Decl(anyAssignabilityInInheritance.ts, 35, 17))
122 >I8 : Symbol(I8, Decl(anyAssignabilityInInheritance.ts, 35, 17))
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/
DsubtypesOfUnion.ts2 interface I8 { [x: string]: number[]; } interface
21 foo9: I8; // error
42 foo9: I8; // error
DsubtypesOfAny.ts45 interface I8 { interface
53 foo: I8;
/third_party/rust/crates/bindgen/bindgen/ir/
Dint.rs49 I8, enumerator
99 SChar | Short | Int | Long | LongLong | I8 | I16 | I32 | I64 | in is_signed()
114 Bool | UChar | SChar | U8 | I8 | Char { .. } => 1, in known_size()
/third_party/mesa3d/src/asahi/lib/
Dagx_formats.c72 AGX_FMT(R8_UINT, R8, UINT, T, I8),
73 AGX_FMT(R8G8_UINT, R8G8, UINT, T, I8),
74 AGX_FMT(R8G8B8A8_UINT, R8G8B8A8, UINT, T, I8),
84 AGX_FMT(R8_SINT, R8, SINT, T, I8),
85 AGX_FMT(R8G8_SINT, R8G8, SINT, T, I8),
86 AGX_FMT(R8G8B8A8_SINT, R8G8B8A8, SINT, T, I8),
/third_party/rust/crates/cxx/syntax/
Datom.rs14 I8, enumerator
40 "i8" => Some(I8), in from_str()
71 I8 => "i8", in as_ref()
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/
DanyAssignabilityInInheritance.ts38 interface I8 { foo: string }
39 declare function foo9(x: I8): I8;
DenumAssignabilityInInheritance.ts49 interface I8 { foo: string; }
50 declare function foo8(x: I8): I8;
DanyAssignableToEveryType2.ts45 interface I8 { interface
52 [x: string]: I8;

12345