Home
last modified time | relevance | path

Searched refs:S (Results 1 – 25 of 2711) sorted by relevance

12345678910>>...109

/external/dropbear/libtomcrypt/src/hashes/sha2/
Dsha256.c60 #define S(x, n) RORc((x),(n)) macro
62 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
63 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
64 #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3))
65 #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10))
74 ulong32 S[8], W[64], t0, t1; in _sha256_compress() local
82 S[i] = md->sha256.state[i]; in _sha256_compress()
104 RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],i); in _sha256_compress()
105 t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4]; in _sha256_compress()
106 S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t; in _sha256_compress()
[all …]
Dsha512.c85 #define S(x, n) ROR64c(x, n) macro
87 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39))
88 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41))
89 #define Gamma0(x) (S(x, 1) ^ S(x, 8) ^ R(x, 7))
90 #define Gamma1(x) (S(x, 19) ^ S(x, 61) ^ R(x, 6))
99 ulong64 S[8], W[80], t0, t1; in _sha512_compress() local
104 S[i] = md->sha512.state[i]; in _sha512_compress()
120 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i]; in _sha512_compress()
121 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]); in _sha512_compress()
122 S[7] = S[6]; in _sha512_compress()
[all …]
/external/clang/lib/AST/
DStmtProfile.cpp36 void VisitStmt(const Stmt *S);
38 #define STMT(Node, Base) void Visit##Node(const Node *S);
70 void StmtProfiler::VisitStmt(const Stmt *S) { in VisitStmt() argument
71 ID.AddInteger(S->getStmtClass()); in VisitStmt()
72 for (Stmt::const_child_range C = S->children(); C; ++C) in VisitStmt()
76 void StmtProfiler::VisitDeclStmt(const DeclStmt *S) { in VisitDeclStmt() argument
77 VisitStmt(S); in VisitDeclStmt()
78 for (DeclStmt::const_decl_iterator D = S->decl_begin(), DEnd = S->decl_end(); in VisitDeclStmt()
83 void StmtProfiler::VisitNullStmt(const NullStmt *S) { in VisitNullStmt() argument
84 VisitStmt(S); in VisitNullStmt()
[all …]
DTypePrinter.cpp51 void print(QualType T, std::string &S);
52 void AppendScope(DeclContext *DC, std::string &S);
53 void printTag(TagDecl *T, std::string &S);
56 void print##CLASS(const CLASS##Type *T, std::string &S);
61 static void AppendTypeQualList(std::string &S, unsigned TypeQuals) { in AppendTypeQualList() argument
63 if (!S.empty()) S += ' '; in AppendTypeQualList()
64 S += "const"; in AppendTypeQualList()
67 if (!S.empty()) S += ' '; in AppendTypeQualList()
68 S += "volatile"; in AppendTypeQualList()
71 if (!S.empty()) S += ' '; in AppendTypeQualList()
[all …]
DParentMap.cpp23 static void BuildParentMap(MapTy& M, Stmt* S) { in BuildParentMap() argument
24 for (Stmt::child_range I = S->children(); I; ++I) in BuildParentMap()
26 M[*I] = S; in BuildParentMap()
31 ParentMap::ParentMap(Stmt* S) : Impl(0) { in ParentMap() argument
32 if (S) { in ParentMap()
34 BuildParentMap(*M, S); in ParentMap()
43 void ParentMap::addStmt(Stmt* S) { in addStmt() argument
44 if (S) { in addStmt()
45 BuildParentMap(*(MapTy*) Impl, S); in addStmt()
49 Stmt* ParentMap::getParent(Stmt* S) const { in getParent()
[all …]
/external/clang/lib/Sema/
DSemaDeclAttr.cpp197 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr, in checkAttributeNumArgs() argument
200 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num; in checkAttributeNumArgs()
215 static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D, in handleExtVectorTypeAttr() argument
219 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef); in handleExtVectorTypeAttr()
233 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false); in handleExtVectorTypeAttr()
240 if (!checkAttributeNumArgs(S, Attr, 1)) in handleExtVectorTypeAttr()
248 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc()); in handleExtVectorTypeAttr()
251 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T)); in handleExtVectorTypeAttr()
254 S.ExtVectorDecls.push_back(tDecl); in handleExtVectorTypeAttr()
258 static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) { in handlePackedAttr() argument
[all …]
DTargetAttributesSema.cpp25 const AttributeList &Attr, Sema &S) const { in ProcessDeclAttribute()
30 const AttributeList &Attr, Sema &S) { in HandleMSP430InterruptAttr() argument
33 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; in HandleMSP430InterruptAttr()
41 if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) { in HandleMSP430InterruptAttr()
42 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) in HandleMSP430InterruptAttr()
49 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) in HandleMSP430InterruptAttr()
55 d->addAttr(::new (S.Context) MSP430InterruptAttr(Attr.getLoc(), S.Context, Num)); in HandleMSP430InterruptAttr()
56 d->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context)); in HandleMSP430InterruptAttr()
64 const AttributeList &Attr, Sema &S) const { in ProcessDeclAttribute()
66 HandleMSP430InterruptAttr(D, Attr, S); in ProcessDeclAttribute()
[all …]
/external/llvm/include/llvm/Support/
DStringPool.h81 entry_t *S; variable
84 PooledStringPtr() : S(0) {} in PooledStringPtr()
86 explicit PooledStringPtr(entry_t *E) : S(E) { in PooledStringPtr()
87 if (S) ++S->getValue().Refcount; in PooledStringPtr()
90 PooledStringPtr(const PooledStringPtr &That) : S(That.S) { in PooledStringPtr()
91 if (S) ++S->getValue().Refcount; in PooledStringPtr()
95 if (S != That.S) {
97 S = That.S;
98 if (S) ++S->getValue().Refcount;
104 if (!S) in clear()
[all …]
/external/libffi/
DMakefile.am8 src/alpha/ffi.c src/alpha/osf.S src/alpha/ffitarget.h \
9 src/arm/ffi.c src/arm/sysv.S src/arm/ffitarget.h \
10 src/cris/ffi.c src/cris/sysv.S src/cris/ffitarget.h \
12 src/ia64/unix.S \
13 src/mips/ffi.c src/mips/n32.S src/mips/o32.S \
15 src/m32r/ffi.c src/m32r/sysv.S src/m32r/ffitarget.h \
16 src/m68k/ffi.c src/m68k/sysv.S src/m68k/ffitarget.h \
17 src/powerpc/ffi.c src/powerpc/sysv.S \
18 src/powerpc/linux64.S src/powerpc/linux64_closure.S \
19 src/powerpc/ppc_closure.S src/powerpc/asm.h \
[all …]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dstring-weight.h41 #define REVERSE_STRING_TYPE(S) \ argument
42 ((S) == STRING_LEFT ? STRING_RIGHT : \
43 ((S) == STRING_RIGHT ? STRING_LEFT : \
44 ((S) == STRING_LEFT_RESTRICT ? STRING_RIGHT_RESTRICT : \
47 template <typename L, StringType S = STRING_LEFT>
50 template <typename L, StringType S = STRING_LEFT>
53 template <typename L, StringType S = STRING_LEFT>
56 template <typename L, StringType S>
57 bool operator==(const StringWeight<L, S> &, const StringWeight<L, S> &);
61 template <typename L, StringType S>
[all …]
/external/v8/test/mjsunit/
Dstring-index.js63 var S = new String("foo"); variable
64 assertEquals("foo", S);
65 assertEquals("f", S[0], "string object");
66 assertEquals("f", S["0"], "string object");
67 S[0] = 'bente';
68 assertEquals("f", S[0], "string object");
69 assertEquals("f", S["0"], "string object");
70 S[-2] = 'spider';
71 assertEquals('spider', S[-2]);
72 S[3] = 'monkey';
[all …]
/external/llvm/include/llvm/Analysis/
DScalarEvolutionExpressions.h48 static inline bool classof(const SCEVConstant *S) { return true; } in classof() argument
49 static inline bool classof(const SCEV *S) { in classof() argument
50 return S->getSCEVType() == scConstant; in classof()
70 static inline bool classof(const SCEVCastExpr *S) { return true; } in classof() argument
71 static inline bool classof(const SCEV *S) { in classof() argument
72 return S->getSCEVType() == scTruncate || in classof()
73 S->getSCEVType() == scZeroExtend || in classof()
74 S->getSCEVType() == scSignExtend; in classof()
90 static inline bool classof(const SCEVTruncateExpr *S) { return true; } in classof() argument
91 static inline bool classof(const SCEV *S) { in classof() argument
[all …]
/external/clang/test/CodeGenCXX/
Dmangle-local-classes-nested.cpp16 struct S { in L1() struct
19 struct S { in L1() struct
22 S().L3a(); in L1()
25 struct S { in L1() struct
28 S().L3b(); in L1()
32 S().L2(); in L1()
35 struct S { in L1() struct
38 struct S { in L1() struct
41 S().L3c(); in L1()
44 struct S { in L1() struct
[all …]
/external/clang/lib/ARCMigrate/
DTransEmptyStatementsAndDealloc.cpp43 bool VisitNullStmt(NullStmt *S) { in VisitNullStmt() argument
44 return isMacroLoc(S->getLeadingEmptyMacroLoc()); in VisitNullStmt()
46 bool VisitCompoundStmt(CompoundStmt *S) { in VisitCompoundStmt() argument
47 if (S->body_empty()) in VisitCompoundStmt()
50 I = S->body_begin(), E = S->body_end(); I != E; ++I) in VisitCompoundStmt()
55 bool VisitIfStmt(IfStmt *S) { in VisitIfStmt() argument
56 if (S->getConditionVariable()) in VisitIfStmt()
58 Expr *condE = S->getCond(); in VisitIfStmt()
63 if (!S->getThen() || !Visit(S->getThen())) in VisitIfStmt()
65 if (S->getElse() && !Visit(S->getElse())) in VisitIfStmt()
[all …]
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
Dparse-js.js257 var S = { variable
270 function peek() { return S.text.charAt(S.pos); };
273 var ch = S.text.charAt(S.pos++);
277 S.newline_before = true;
278 ++S.line;
279 S.col = 0;
281 ++S.col;
287 return !S.peek();
291 var pos = S.text.indexOf(what, S.pos);
297 S.tokline = S.line;
[all …]
/external/srec/doc/logs/srec/
Drecog4_SHIP_bothtags5.res2 S: 191
4 S: 279
6 S: 258
8 S: 228
10 S: 305
12 S: 747
14 S: 497
16 S: 719
18 S: 678
20 S: 692
[all …]
Drecog4_SHIP_bothtags5_from_saved.res2 S: 191
4 S: 279
6 S: 258
8 S: 228
10 S: 305
12 S: 747
14 S: 497
16 S: 719
18 S: 678
20 S: 692
[all …]
Drecog4_SHIP_change_sample_rate2.res2 S: 453
4 S: 289
6 S: 376
8 S: 392
10 S: 493
12 S: 445
14 S: 398
16 S: 477
18 S: 556
20 S: 490
[all …]
/external/wpa_supplicant_8/src/crypto/
Dsha256-internal.c86 #define S(x, n) RORc((x), (n)) macro
88 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
89 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
90 #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3))
91 #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10))
99 u32 S[8], W[64], t0, t1; in sha256_compress() local
105 S[i] = md->state[i]; in sha256_compress()
126 RND(S[0], S[1], S[2], S[3], S[4], S[5], S[6], S[7], i); in sha256_compress()
127 t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4]; in sha256_compress()
128 S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t; in sha256_compress()
[all …]
/external/clang/lib/Serialization/
DASTReaderStmt.cpp69 void VisitStmt(Stmt *S);
88 void ASTStmtReader::VisitStmt(Stmt *S) { in VisitStmt() argument
92 void ASTStmtReader::VisitNullStmt(NullStmt *S) { in VisitNullStmt() argument
93 VisitStmt(S); in VisitNullStmt()
94 S->setSemiLoc(ReadSourceLocation(Record, Idx)); in VisitNullStmt()
95 S->LeadingEmptyMacro = ReadSourceLocation(Record, Idx); in VisitNullStmt()
98 void ASTStmtReader::VisitCompoundStmt(CompoundStmt *S) { in VisitCompoundStmt() argument
99 VisitStmt(S); in VisitCompoundStmt()
104 S->setStmts(*Reader.getContext(), Stmts.data(), Stmts.size()); in VisitCompoundStmt()
105 S->setLBracLoc(ReadSourceLocation(Record, Idx)); in VisitCompoundStmt()
[all …]
/external/clang/lib/CodeGen/
DCGStmt.cpp32 void CodeGenFunction::EmitStopPoint(const Stmt *S) { in EmitStopPoint() argument
34 if (isa<DeclStmt>(S)) in EmitStopPoint()
35 DI->setLocation(S->getLocEnd()); in EmitStopPoint()
37 DI->setLocation(S->getLocStart()); in EmitStopPoint()
43 void CodeGenFunction::EmitStmt(const Stmt *S) { in EmitStmt() argument
44 assert(S && "Null statement?"); in EmitStmt()
48 if (EmitSimpleStmt(S)) in EmitStmt()
58 if (!ContainsLabel(S)) { in EmitStmt()
61 assert(!isa<DeclStmt>(*S) && "Unexpected DeclStmt!"); in EmitStmt()
70 EmitStopPoint(S); in EmitStmt()
[all …]
/external/clang/include/clang/Analysis/Visitors/
DCFGStmtVisitor.h27 static_cast<ImplClass*>(this)->BlockStmt_Visit ## CLASS(static_cast<CLASS*>(S));
29 #define DEFAULT_BLOCKSTMT_VISIT(CLASS) RetTy BlockStmt_Visit ## CLASS(CLASS *S)\
32 cast<Expr>(S)); }
39 Stmt*& S; member
41 NullifyStmt(Stmt*& s) : S(s) {} in NullifyStmt()
42 ~NullifyStmt() { S = NULL; } in ~NullifyStmt()
50 RetTy Visit(Stmt* S) { in Visit() argument
51 if (S == CurrentBlkStmt || in Visit()
52 !static_cast<ImplClass*>(this)->getCFG().isBlkExpr(S)) in Visit()
53 return StmtVisitor<ImplClass,RetTy>::Visit(S); in Visit()
[all …]
/external/icu4c/test/testdata/
DBidiTest.txt88 @Type: S: [\u0009\u000B\u001F]
111 S; 3
126 S; 4
219 S LRE; 3
220 S LRO; 3
221 S RLE; 3
222 S RLO; 3
223 S PDF; 3
224 S BN; 3
278 S LRE; 4
[all …]
/external/srec/config/en.us/dictionary/
Dc0.650 "!EXCLAMATION-POINT EH2 K S K L AH0 M EY1 SH AH0 N P OY2 N T
55 "IN-QUOTES IH1 N K W OW1 T S
58 #SHARP-SIGN SH AA1 R P S AY1 N
59 %PERCENT P ER0 S EH1 N T
60 &AMPERSAND AE1 M P ER0 S AE2 N D
62 'COURSE K AO1 R S
70 'S EH1 S
71 'SINGLE-QUOTE S IH1 NG G AH0 L K W OW1 T
76 (IN-PARENTHESES IH1 N P ER0 EH1 N TH AH0 S IY2 Z
78 (OPEN-PARENTHESES OW1 P AH0 N P ER0 EH1 N TH AH0 S IY2 Z
[all …]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
Dp6.cpp60 struct S { struct
67 auto p1 = &S::f; in test() argument
68 auto S::*p2 = &S::f; in test()
69 auto (S::*p3)() = &S::f; in test()
70 …auto p4 = &S::g; // expected-error {{incompatible initializer of type '<overloaded function type>'… in test()
71 …auto S::*p5 = &S::g; // expected-error {{incompatible initializer of type '<overloaded function ty… in test()
72 auto (S::*p6)(int) = &S::g; in test()
73 auto p7 = &S::m; in test()
74 auto S::*p8 = &S::m; in test()
76 only<void (S::*)()> test1 = p1; in test()
[all …]

12345678910>>...109