Home
last modified time | relevance | path

Searched refs:SS (Results 1 – 25 of 628) sorted by relevance

12345678910>>...26

/third_party/typescript/tests/baselines/reference/
DgenericObjectCreationWithoutTypeArgs.types2 class SS<T>{
3 >SS : SS<T>
7 var x1 = new SS<number>(); // OK
8 >x1 : SS<number>
9 >new SS<number>() : SS<number>
10 >SS : typeof SS
12 var x2 = new SS < number>; // Correctly give error
13 >x2 : SS<number>
14 >new SS < number> : SS<number>
15 >SS : typeof SS
[all …]
DgenericObjectCreationWithoutTypeArgs.symbols2 class SS<T>{
3 >SS : Symbol(SS, Decl(genericObjectCreationWithoutTypeArgs.ts, 0, 0))
8 var x1 = new SS<number>(); // OK
10 >SS : Symbol(SS, Decl(genericObjectCreationWithoutTypeArgs.ts, 0, 0))
12 var x2 = new SS < number>; // Correctly give error
14 >SS : Symbol(SS, Decl(genericObjectCreationWithoutTypeArgs.ts, 0, 0))
16 var x3 = new SS(); // OK
18 >SS : Symbol(SS, Decl(genericObjectCreationWithoutTypeArgs.ts, 0, 0))
20 var x4 = new SS; // Should be allowed, but currently give error ('supplied parameters do …
22 >SS : Symbol(SS, Decl(genericObjectCreationWithoutTypeArgs.ts, 0, 0))
DgenericObjectCreationWithoutTypeArgs.js2 class SS<T>{ class
6 var x1 = new SS<number>(); // OK
7 var x2 = new SS < number>; // Correctly give error
8 var x3 = new SS(); // OK
9 var x4 = new SS; // Should be allowed, but currently give error ('supplied parameters do …
13 var SS = /** @class */ (function () {
14 function SS() { class in SS
16 return SS;
18 var x1 = new SS(); // OK
19 var x2 = new SS; // Correctly give error
[all …]
DgenericObjectCreationWithoutTypeArgs.errors.txt5 class SS<T>{
9 var x1 = new SS<number>(); // OK
10 var x2 = new SS < number>; // Correctly give error
13 var x3 = new SS(); // OK
14 …var x4 = new SS; // Should be allowed, but currently give error ('supplied parameters do…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp173 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) override { in ComputeInstructionState() argument
176 return visitCallSite(cast<CallInst>(&I), ChangedValues, SS); in ComputeInstructionState()
178 return visitCallSite(cast<InvokeInst>(&I), ChangedValues, SS); in ComputeInstructionState()
180 return visitLoad(*cast<LoadInst>(&I), ChangedValues, SS); in ComputeInstructionState()
182 return visitReturn(*cast<ReturnInst>(&I), ChangedValues, SS); in ComputeInstructionState()
184 return visitSelect(*cast<SelectInst>(&I), ChangedValues, SS); in ComputeInstructionState()
186 return visitStore(*cast<StoreInst>(&I), ChangedValues, SS); in ComputeInstructionState()
188 return visitInst(I, ChangedValues, SS); in ComputeInstructionState()
244 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) { in visitReturn() argument
251 MergeValues(SS.getValueState(RegI), SS.getValueState(RetF)); in visitReturn()
[all …]
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-smd/
DREADME.md6 The SS is able to receive system messages matching a specified
7 class filter, and issue system messages also using SS payload
10 Both a direct api lws_smd participant and an SS based one are instantiated.
13 When the Secure Stream is created, it asks to send using normal the SS api.
14 In the SS tx callback, it prepares a header and then send a NETWORK class
28 The run ./bin/lws-minimal-secure-streams-smd alone (local SS and direct SMD tests)
30 ./bin-lws-minimal-secure-streams-smd-client in the other (SS proxy tests)
43 streamtype "_lws_smd", creating a local SS handle.
45 2) The SS creation request is proxied to the SS proxy process over Unix Domain
58 The minimal example produces a variety of messages on the SS link, including
[all …]
/third_party/typescript/tests/cases/compiler/
DgenericObjectCreationWithoutTypeArgs.ts1 class SS<T>{ class
5 var x1 = new SS<number>(); // OK
6 var x2 = new SS < number>; // Correctly give error
7 var x3 = new SS(); // OK
8 var x4 = new SS; // Should be allowed, but currently give error ('supplied parameters do …
/third_party/openssl/providers/implementations/rands/seeding/
Drand_vms.c394 0, 0, 0, 0, 0)) != SS$_NORMAL) { in data_collect_method()
399 != SS$_NORMAL) { in data_collect_method()
404 != SS$_NORMAL) { in data_collect_method()
409 != SS$_NORMAL) { in data_collect_method()
417 if ((status = lib$get_ef(&efn)) != SS$_NORMAL) { in data_collect_method()
422 != SS$_NORMAL) { in data_collect_method()
426 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
430 if (iosb.iosb$l_getxxi_status != SS$_NORMAL) { in data_collect_method()
435 != SS$_NORMAL) { in data_collect_method()
439 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveVariables.cpp263 for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS) in HandlePhysRegUse() local
264 Processed.insert(*SS); in HandlePhysRegUse()
353 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); SS.isValid(); in HandlePhysRegKill() local
354 ++SS) in HandlePhysRegKill()
355 PartUses.insert(*SS); in HandlePhysRegKill()
390 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); in HandlePhysRegKill() local
391 SS.isValid(); ++SS) in HandlePhysRegKill()
392 PhysRegUse[*SS] = LastRefOrPartRef; in HandlePhysRegKill()
394 for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS) in HandlePhysRegKill() local
395 PartUses.erase(*SS); in HandlePhysRegKill()
[all …]
DStackSlotColoring.cpp334 int SS = Register::stackSlot2Index(li->reg); in ColorSlots() local
337 SlotMapping[SS] = NewSS; in ColorSlots()
338 RevMap[NewSS].push_back(SS); in ColorSlots()
341 Changed |= (SS != NewSS); in ColorSlots()
347 int SS = Register::stackSlot2Index(li->reg); in ColorSlots() local
348 li->weight = SlotWeights[SS]; in ColorSlots()
363 for (unsigned SS = 0, SE = SSRefs.size(); SS != SE; ++SS) { in ColorSlots() local
364 int NewFI = SlotMapping[SS]; in ColorSlots()
365 if (NewFI == -1 || (NewFI == (int)SS)) in ColorSlots()
369 SmallVectorImpl<MachineMemOperand *> &RefMMOs = SSRefs[SS]; in ColorSlots()
/third_party/openssl/test/
Dstack_test.c32 } SS; typedef
41 DEFINE_STACK_OF(SS) in DEFINE_SPECIAL_STACK_OF()
258 static SS *SS_copy(const SS *p) in SS_copy()
260 SS *q = OPENSSL_malloc(sizeof(*q)); in SS_copy()
267 static void SS_free(SS *p) { in SS_free()
273 STACK_OF(SS) *s = sk_SS_new_null(); in test_SS_stack()
274 STACK_OF(SS) *r = NULL; in test_SS_stack()
275 SS *v[10], *p; in test_SS_stack()
/third_party/glslang/Test/baseResults/
Dspv.430.vert.out35 Name 60 "SS"
36 MemberName 60(SS) 0 "b"
37 MemberName 60(SS) 1 "s"
38 MemberName 60(SS) 2 "c"
118 60(SS): TypeStruct 19(fvec4) 59(S) 19(fvec4)
119 61: TypePointer Output 60(SS)
/third_party/PyYAML/tests/data/
Dspec-02-10.data4 # Following node labeled SS
5 - &SS Sammy Sosa
7 - *SS # Subsequent occurrence
/third_party/FatFs/source/
Dff.c998 mem_set(fs->win, 0, SS(fs)); in sync_fs()
1062 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat()
1063 wc = fs->win[bc++ % SS(fs)]; /* Get 1st byte of the entry */ in get_fat()
1064 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat()
1065 wc |= fs->win[bc % SS(fs)] << 8; /* Merge 2nd byte of the entry */ in get_fat()
1070 if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 2))) != FR_OK) break; in get_fat()
1071 val = ld_word(fs->win + clst * 2 % SS(fs)); /* Simple WORD array */ in get_fat()
1075 if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 4))) != FR_OK) break; in get_fat()
1076 …val = ld_dword(fs->win + clst * 4 % SS(fs)) & 0x0FFFFFFF; /* Simple DWORD array but mask out upper… in get_fat()
1114 res = move_window(fs, fs->fatbase + (bc / SS(fs))); in put_fat()
[all …]
/third_party/musl/porting/liteos_a/kernel/src/string/
Dmemchr.c5 #define SS (sizeof(size_t)) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
/third_party/musl/src/string/
Dmemchr.c5 #define SS (sizeof(size_t)) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
/third_party/musl/porting/uniproton/kernel/src/string/
Dmemchr.c5 #define SS (sizeof(size_t)) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
/third_party/musl/porting/liteos_m/kernel/src/string/
Dmemchr.c5 #define SS (sizeof(size_t)) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
/third_party/glslang/Test/
Dspv.noLocation.vert27 struct SS { int a; };
28 out layout(location = 15) SS ss1;
29 out SS ss2; // ERROR
D450.vert22 struct SS { float f; S s; };
23 out SS outSS;
30 SS::f;
/third_party/openssl/crypto/seed/
Dseed.c53 # ifdef SS /* can get defined on Solaris by inclusion of
55 # undef SS
61 SS[0][(unsigned char) (v) & 0xff] ^ \
62 SS[1][(unsigned char) ((v)>>8) & 0xff] ^ \
63 SS[2][(unsigned char)((v)>>16) & 0xff] ^ \
64 SS[3][(unsigned char)((v)>>24) & 0xff]
66 static const seed_word SS[4][256] = { variable
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-stress/
DREADME.md4 SS connections and a budget of sequential connections.
7 SS connections one after the other.
21 --budget <count>|Each fork sequentially does this many SS connections (default 1)|
/third_party/openssl/crypto/ui/
Dui_openssl.c469 if (status != SS$_NORMAL) { in open_console()
479 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) in open_console()
503 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in noecho_console()
535 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in echo_console()
562 if (status != SS$_NORMAL) { in close_console()
/third_party/PyYAML/examples/pygments-lexer/
Dexample.yaml91 - &SS Sammy Sosa
93 - *SS # Subsequent occurrence
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp374 auto SS = std::make_shared<YAMLChecksumsSubsection>(); in mapping() local
375 Subsection.Subsection = SS; in mapping()
754 for (const auto &SS : Subsections) { in toCodeViewSubsectionList() local
756 CVS = SS.Subsection->toCodeViewSubsection(Allocator, SC); in toCodeViewSubsectionList()
892 const DebugSubsectionRecord &SS) { in fromCodeViewSubection() argument
894 if (auto EC = visitDebugSubsection(SS, V, SC)) in fromCodeViewSubection()
915 for (const auto &SS : Subsections) { in fromDebugS() local
916 auto YamlSS = Err(YAMLDebugSubsection::fromCodeViewSubection(SC, SS)); in fromDebugS()
935 for (const auto &SS : Sections) { in initializeStringsAndChecksums() local
936 if (SS.Subsection->Kind != DebugSubsectionKind::StringTable) in initializeStringsAndChecksums()
[all …]

12345678910>>...26