/external/dropbear/libtomcrypt/src/hashes/sha2/ |
D | sha256.c | 60 #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 …]
|
D | sha512.c | 85 #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/ |
D | StmtProfile.cpp | 36 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() 80 void StmtProfiler::VisitDeclStmt(const DeclStmt *S) { in VisitDeclStmt() argument 81 VisitStmt(S); in VisitDeclStmt() 82 for (DeclStmt::const_decl_iterator D = S->decl_begin(), DEnd = S->decl_end(); in VisitDeclStmt() 87 void StmtProfiler::VisitNullStmt(const NullStmt *S) { in VisitNullStmt() argument 88 VisitStmt(S); in VisitNullStmt() [all …]
|
D | ParentMap.cpp | 28 static void BuildParentMap(MapTy& M, Stmt* S, in BuildParentMap() argument 31 switch (S->getStmtClass()) { in BuildParentMap() 34 PseudoObjectExpr *POE = cast<PseudoObjectExpr>(S); in BuildParentMap() 36 M[POE->getSyntacticForm()] = S; in BuildParentMap() 42 M[*I] = S; in BuildParentMap() 49 BinaryConditionalOperator *BCO = cast<BinaryConditionalOperator>(S); in BuildParentMap() 51 M[BCO->getCommon()] = S; in BuildParentMap() 54 M[BCO->getCond()] = S; in BuildParentMap() 57 M[BCO->getTrueExpr()] = S; in BuildParentMap() 60 M[BCO->getFalseExpr()] = S; in BuildParentMap() [all …]
|
/external/clang/lib/Sema/ |
D | SemaDeclAttr.cpp | 209 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr, in checkAttributeNumArgs() argument 212 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num; in checkAttributeNumArgs() 222 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr, in checkAttributeAtLeastNumArgs() argument 225 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num; in checkAttributeAtLeastNumArgs() 236 static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D, in checkFunctionOrMethodArgumentIndex() argument 253 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) { in checkFunctionOrMethodArgumentIndex() 254 S.Diag(AttrLoc, diag::err_attribute_argument_n_not_int) in checkFunctionOrMethodArgumentIndex() 261 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds) in checkFunctionOrMethodArgumentIndex() 268 S.Diag(AttrLoc, in checkFunctionOrMethodArgumentIndex() 301 static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) { in threadSafetyCheckIsSmartPointer() argument [all …]
|
D | TargetAttributesSema.cpp | 25 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/clang/test/CodeGenCXX/ |
D | cxx11-unrestricted-union.cpp | 30 struct S { struct 31 S(); 32 S(const S &); 33 S(S &&); 34 S &operator=(const S&); 35 S &operator=(S&&); 36 ~S(); 49 S::S() {} in S() argument 56 S::S(const S&) {} in S() function in S 63 S::S(S&&) {} in S() argument [all …]
|
D | mangle-local-classes-nested.cpp | 16 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/llvm/include/llvm/Support/ |
D | StringPool.h | 81 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/clang/test/SemaTemplate/ |
D | instantiation-depth-defarg.cpp | 3 template<int N> struct S { struct 4 typedef typename S<N-1>::type type; argument 5 static int f(int n = S<N-1>::f()); // \ 12 template<> struct S<0> { struct 17 template struct S<128>; variable 18 template struct S<256>; variable 19 template struct S<384>; variable 20 template struct S<512>; variable 21 template struct S<640>; variable 22 template struct S<768>; variable [all …]
|
/external/icu4c/data/region/ |
D | mua.txt | 15 AE{"Sǝr Arabiya ma taini"} 21 AN{"Sǝr ma kasǝŋ ma laŋne"} 48 CD{"Sǝr Kongo ma dii ne zair"} 51 CH{"Sǝr Swiss"} 62 CZ{"Sǝr Syek"} 67 DO{"Sǝr Dominik ma lii"} 71 EG{"Sǝr Egypt"} 72 ER{"Sǝr Eritre"} 75 FI{"Sǝr Finland"} 76 FJ{"Sǝr Fiji"} [all …]
|
/external/skia/gm/ |
D | texdata.cpp | 23 static const int S = 200; variable 37 return make_isize(2*S, 2*S); in onISize() 45 SkPMColor gTextureData[(2 * S) * (2 * S)]; in onDraw() 46 static const int stride = 2 * S; in onDraw() 56 for (int y = 0; y < S; ++y) { in onDraw() 57 for (int x = 0; x < S; ++x) { in onDraw() 62 offset = S; in onDraw() 63 for (int y = 0; y < S; ++y) { in onDraw() 64 for (int x = 0; x < S; ++x) { in onDraw() 69 offset = S * stride; in onDraw() [all …]
|
/external/libffi/ |
D | Makefile.am | 8 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/ |
D | string-weight.h | 41 #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/ |
D | string-index.js | 63 var S = new String("foo"); variable 64 assertEquals(Object("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/openfst/src/include/fst/ |
D | string-weight.h | 44 #define REVERSE_STRING_TYPE(S) \ argument 45 ((S) == STRING_LEFT ? STRING_RIGHT : \ 46 ((S) == STRING_RIGHT ? STRING_LEFT : \ 47 ((S) == STRING_LEFT_RESTRICT ? STRING_RIGHT_RESTRICT : \ 50 template <typename L, StringType S = STRING_LEFT> 53 template <typename L, StringType S = STRING_LEFT> 56 template <typename L, StringType S = STRING_LEFT> 59 template <typename L, StringType S> 60 bool operator==(const StringWeight<L, S> &, const StringWeight<L, S> &); 64 template <typename L, StringType S> [all …]
|
/external/clang/test/CXX/special/class.copy/ |
D | p13-0x.cpp | 66 template<typename T> struct S { struct 67 S() = default; // expected-note 2{{here}} 68 S(S&&) = default; 69 S(const S&) = default; 92 static_assert(__is_literal_type(S<U>), ""); 93 static_assert(!__is_literal_type(S<V>), ""); 94 static_assert(!__is_literal_type(S<W>), ""); 106 friend constexpr S<U>::S() noexcept; 107 friend constexpr S<U>::S(S<U>&&) noexcept; 108 friend constexpr S<U>::S(const S<U>&) noexcept; [all …]
|
/external/clang/test/Parser/ |
D | cxx0x-condition.cpp | 3 struct S { S(int); operator bool(); }; struct 16 if (S(a)) {} // ok in f() 17 if (S(a) = 0) {} // ok in f() 18 if (S(a) == 0) {} // ok in f() 20 if (S(n)) {} // expected-error {{unexpected type name 'n': expected expression}} in f() 21 if (S(n) = 0) {} // ok in f() 22 if (S(n) == 0) {} // expected-error {{unexpected type name 'n': expected expression}} in f() 24 …if (S b(a)) {} // expected-error {{variable declaration in condition cannot have a parenthesized i… in f() 26 …if (S b(n)) {} // expected-error {{a function type is not allowed here}} expected-error {{must hav… in f() 27 if (S b(n) = 0) {} // expected-error {{a function type is not allowed here}} in f() [all …]
|
D | cxx0x-ambig.cpp | 7 struct S { int n; }; struct 12 extern struct S final; 13 extern struct S final [[]]; 14 extern struct S final, foo; 15 struct S final = S(); 21 struct S final { // expected-note {{here}} struct 25 struct T final : S {}; // expected-error {{base 'S' is marked 'final'}} 26 …struct T bar : S {}; // expected-error {{expected ';' after top level declarator}} expected-error … 89 struct S { struct 90 S(int); [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | sha256-internal.c | 70 #define S(x, n) RORc((x), (n)) macro 72 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) 73 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) 74 #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3)) 75 #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10)) 83 u32 S[8], W[64], t0, t1; in sha256_compress() local 89 S[i] = md->state[i]; in sha256_compress() 110 RND(S[0], S[1], S[2], S[3], S[4], S[5], S[6], S[7], i); in sha256_compress() 111 t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4]; in sha256_compress() 112 S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t; in sha256_compress() [all …]
|
/external/srec/doc/logs/srec/ |
D | recog4_SHIP_bothtags5.res | 2 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 …]
|
D | recog4_SHIP_bothtags5_from_saved.res | 2 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 …]
|
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/ |
D | parse-js.js | 257 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/clang/lib/ARCMigrate/ |
D | TransEmptyStatementsAndDealloc.cpp | 32 static bool isEmptyARCMTMacroStatement(NullStmt *S, in isEmptyARCMTMacroStatement() argument 35 if (!S->hasLeadingEmptyMacro()) in isEmptyARCMTMacroStatement() 38 SourceLocation SemiLoc = S->getSemiLoc(); in isEmptyARCMTMacroStatement() 86 bool VisitNullStmt(NullStmt *S) { in VisitNullStmt() argument 87 return isEmptyARCMTMacroStatement(S, MacroLocs, Ctx); in VisitNullStmt() 89 bool VisitCompoundStmt(CompoundStmt *S) { in VisitCompoundStmt() argument 90 if (S->body_empty()) in VisitCompoundStmt() 93 I = S->body_begin(), E = S->body_end(); I != E; ++I) in VisitCompoundStmt() 98 bool VisitIfStmt(IfStmt *S) { in VisitIfStmt() argument 99 if (S->getConditionVariable()) in VisitIfStmt() [all …]
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 91 void VisitStmt(Stmt *S); 111 void ASTStmtReader::VisitStmt(Stmt *S) { in VisitStmt() argument 115 void ASTStmtReader::VisitNullStmt(NullStmt *S) { in VisitNullStmt() argument 116 VisitStmt(S); in VisitNullStmt() 117 S->setSemiLoc(ReadSourceLocation(Record, Idx)); in VisitNullStmt() 118 S->HasLeadingEmptyMacro = Record[Idx++]; in VisitNullStmt() 121 void ASTStmtReader::VisitCompoundStmt(CompoundStmt *S) { in VisitCompoundStmt() argument 122 VisitStmt(S); in VisitCompoundStmt() 127 S->setStmts(Reader.getContext(), Stmts.data(), Stmts.size()); in VisitCompoundStmt() 128 S->setLBracLoc(ReadSourceLocation(Record, Idx)); in VisitCompoundStmt() [all …]
|