Home
last modified time | relevance | path

Searched refs:sym1 (Results 1 – 25 of 29) sorted by relevance

12

/third_party/skia/third_party/externals/tint/src/
Dsymbol_test.cc30 Symbol sym1(1, ProgramID::New()); in TEST_F() local
34 sym2 = sym1; in TEST_F()
36 EXPECT_EQ(sym2, sym1); in TEST_F()
41 Symbol sym1(1, program_id); in TEST_F() local
45 EXPECT_TRUE(sym1 == sym3); in TEST_F()
46 EXPECT_FALSE(sym1 == sym2); in TEST_F()
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dformats.adoc2770 ^|{sym1} | This feature must: be supported on the named format
2831 | ename:VK_FORMAT_B4G4R4A4_UNORM_PACK16 | {sym1} | {sym1} | {sym1} | | | | | | | …
2832 | ename:VK_FORMAT_R5G6B5_UNORM_PACK16 | {sym1} | {sym1} | {sym1} | | | {sym1} | {sym1} |…
2836 | ename:VK_FORMAT_A1R5G5B5_UNORM_PACK16 | {sym1} | {sym1} | {sym1} | | | {sym1} | {sym1} |…
2873 …MAT_R8_UNORM | {sym1} | {sym1} | {sym1} | {sym3} | | {sym1} | {sym1} | {sym1} …
2874 …MAT_R8_SNORM | {sym1} | {sym1} | {sym1} | {sym3} | | | | …
2877 …MAT_R8_UINT | {sym1} | {sym1} | | {sym3} | | {sym1} | {sym1} | …
2878 …MAT_R8_SINT | {sym1} | {sym1} | | {sym3} | | {sym1} | {sym1} | …
2880 …MAT_R8G8_UNORM | {sym1} | {sym1} | {sym1} | {sym3} | | {sym1} | {sym1} | {sym1} …
2881 …MAT_R8G8_SNORM | {sym1} | {sym1} | {sym1} | {sym3} | | | | …
[all …]
Dformats.txt2676 ^|{sym1} | This feature must: be supported on the named format
2737 | ename:VK_FORMAT_B4G4R4A4_UNORM_PACK16 | {sym1} | {sym1} | {sym1} | | | | | | | …
2738 | ename:VK_FORMAT_R5G6B5_UNORM_PACK16 | {sym1} | {sym1} | {sym1} | | | {sym1} | {sym1} |…
2742 | ename:VK_FORMAT_A1R5G5B5_UNORM_PACK16 | {sym1} | {sym1} | {sym1} | | | {sym1} | {sym1} |…
2775 …MAT_R8_UNORM | {sym1} | {sym1} | {sym1} | {sym3} | | {sym1} | {sym1} | {sym1} …
2776 …MAT_R8_SNORM | {sym1} | {sym1} | {sym1} | {sym3} | | | | …
2779 …MAT_R8_UINT | {sym1} | {sym1} | | {sym3} | | {sym1} | {sym1} | …
2780 …MAT_R8_SINT | {sym1} | {sym1} | | {sym3} | | {sym1} | {sym1} | …
2782 …MAT_R8G8_UNORM | {sym1} | {sym1} | {sym1} | {sym3} | | {sym1} | {sym1} | {sym1} …
2783 …MAT_R8G8_SNORM | {sym1} | {sym1} | {sym1} | {sym3} | | | | …
[all …]
/third_party/toybox/kconfig/
Dexpr.c354 struct symbol *sym1, *sym2; in expr_join_or() local
366 sym1 = tmp->left.sym; in expr_join_or()
368 sym1 = e1->left.sym; in expr_join_or()
375 if (sym1 != sym2) in expr_join_or()
377 if (sym1->type != S_BOOLEAN && sym1->type != S_TRISTATE) in expr_join_or()
379 if (sym1->type == S_TRISTATE) { in expr_join_or()
384 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_no); in expr_join_or()
390 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_mod); in expr_join_or()
396 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_yes); in expr_join_or()
399 if (sym1->type == S_BOOLEAN && sym1 == sym2) { in expr_join_or()
[all …]
/third_party/libfuse/lib/
Dfuse_misc.h20 # define FUSE_SYMVER(sym1, sym2) __attribute__ ((symver (sym2))) argument
22 # define FUSE_SYMVER(sym1, sym2) __asm__("\t.symver " sym1 "," sym2); argument
25 #define FUSE_SYMVER(sym1, sym2) argument
/third_party/node/test/known_issues/
Dtest-vm-ownpropertysymbols.js7 const sym1 = Symbol('1'); constant
11 [sym1]: true,
28 assert.deepStrictEqual(Array.from(restSym), [sym1, sym2]);
Dtest-vm-ownkeys.js7 const sym1 = Symbol('1'); constant
11 [sym1]: true,
28 assert.deepStrictEqual(Array.from(restKeys), ['a', 'b', sym1, sym2]);
Dtest-vm-ownpropertynames.js7 const sym1 = Symbol('1'); constant
11 [sym1]: true,
/third_party/typescript/tests/cases/conformance/types/intersection/
DintersectionReductionStrict.ts3 declare const sym1: unique symbol; constant
10 type T5 = symbol & typeof sym1; // typeof sym1
11 type T6 = typeof sym1 & symbol & typeof sym2; // never
12 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReduction.ts3 declare const sym1: unique symbol; constant
10 type T5 = symbol & typeof sym1; // typeof sym1
11 type T6 = typeof sym1 & symbol & typeof sym2; // never
12 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
/third_party/typescript/tests/baselines/reference/
DintersectionReductionStrict.types2 declare const sym1: unique symbol;
3 >sym1 : unique symbol
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : unique symbol
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : unique symbol
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : unique symbol
DintersectionReductionStrict.symbols2 declare const sym1: unique symbol;
3 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
DintersectionReduction.types2 declare const sym1: unique symbol;
3 >sym1 : unique symbol
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : unique symbol
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : unique symbol
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : unique symbol
DintersectionReductionStrict.js2 declare const sym1: unique symbol;
9 type T5 = symbol & typeof sym1; // typeof sym1
10 type T6 = typeof sym1 & symbol & typeof sym2; // never
11 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReductionStrict.errors.txt8 declare const sym1: unique symbol;
15 type T5 = symbol & typeof sym1; // typeof sym1
16 type T6 = typeof sym1 & symbol & typeof sym2; // never
17 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReduction.symbols2 declare const sym1: unique symbol;
3 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
DintersectionReduction.errors.txt8 declare const sym1: unique symbol;
15 type T5 = symbol & typeof sym1; // typeof sym1
16 type T6 = typeof sym1 & symbol & typeof sym2; // never
17 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReduction.js2 declare const sym1: unique symbol;
9 type T5 = symbol & typeof sym1; // typeof sym1
10 type T6 = typeof sym1 & symbol & typeof sym2; // never
11 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
/third_party/lzma/C/
DPpmd7Enc.c143 unsigned sym1 = s2[1].Symbol; in Ppmd7z_EncodeSymbol() local
146 MASK(sym1) = 0; in Ppmd7z_EncodeSymbol()
271 unsigned sym1 = s[1].Symbol; in Ppmd7z_EncodeSymbol() local
274 sum += (s[-1].Freq & (unsigned)(MASK(sym1))); in Ppmd7z_EncodeSymbol()
306 const unsigned sym1 = s2[1].Symbol; in Ppmd7z_EncodeSymbol() local
309 MASK(sym1) = 0; in Ppmd7z_EncodeSymbol()
DPpmd7Dec.c124 unsigned sym1 = s2[1].Symbol; in Ppmd7z_DecodeSymbol() local
127 MASK(sym1) = 0; in Ppmd7z_DecodeSymbol()
219 unsigned sym1 = s[1].Symbol; in Ppmd7z_DecodeSymbol() local
222 hiCnt += (s[-1].Freq & (unsigned)(MASK(sym1))); in Ppmd7z_DecodeSymbol()
/third_party/elfutils/src/
Delfcmp.c361 GElf_Sym *sym1 = gelf_getsym (data1, ndx, &sym1_mem); in main() local
362 if (sym1 == NULL) in main()
374 sym1->st_name); in main()
379 || sym1->st_value != sym2->st_value in main()
380 || (sym1->st_size != sym2->st_size in main()
381 && sym1->st_shndx != SHN_UNDEF) in main()
382 || sym1->st_info != sym2->st_info in main()
383 || sym1->st_other != sym2->st_other in main()
384 || sym1->st_shndx != sym2->st_shndx)) in main()
404 if (sym1->st_shndx == SHN_UNDEF in main()
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dobject-is.js42 sym1 = Symbol.for('foo');
44 assert(Object.is(sym1, sym2) === true);
/third_party/node/test/js-native-api/test_object/
Dtest.js104 const sym1 = Symbol('1'); constant
109 [sym1]: '@@iterator',
113 assert(test_object.Has(object2, sym1));
115 assert.strictEqual(test_object.Get(object2, sym1), '@@iterator');
/third_party/elfio/tests/
DELFIOTest1.cpp759 Elf_Word sym1 = symbols.add_symbol( str_writer, name.c_str(), value, size, in TEST() local
806 rela.add_entry( 1, sym1, R_386_RELATIVE ); in TEST()
814 rela.add_entry( 11, sym1, R_386_RELATIVE ); in TEST()
/third_party/ffmpeg/libavcodec/
Dmss12.c102 int sym1, sym2; in ff_mss12_model_update() local
104 sym1 = m->idx2sym[val]; in ff_mss12_model_update()
108 m->idx2sym[i] = sym1; in ff_mss12_model_update()

12