Home
last modified time | relevance | path

Searched +defs:t +defs:c (Results 1 – 25 of 604) sorted by relevance

12345678910>>...25

/external/dropbear/libtomcrypt/src/hashes/
Dmd5.c46 #define FF(a,b,c,d,M,s,t) \ argument
49 #define GG(a,b,c,d,M,s,t) \ argument
52 #define HH(a,b,c,d,M,s,t) \ argument
55 #define II(a,b,c,d,M,s,t) \ argument
85 #define FF(a,b,c,d,M,s,t) \ argument
88 #define GG(a,b,c,d,M,s,t) \ argument
91 #define HH(a,b,c,d,M,s,t) \ argument
94 #define II(a,b,c,d,M,s,t) \ argument
106 ulong32 i, W[16], a, b, c, d; in _md5_compress() local
108 ulong32 t; in _md5_compress() local
/external/openssl/crypto/md5/
Dmd5_locl.h87 #define HASH_MAKE_STRING(c,s) do { \ argument
107 #define F(b,c,d) ((((c) ^ (d)) & (b)) ^ (d)) argument
108 #define G(b,c,d) ((((b) ^ (c)) & (d)) ^ (c)) argument
109 #define H(b,c,d) ((b) ^ (c) ^ (d)) argument
110 #define I(b,c,d) (((~(d)) | (b)) ^ (c)) argument
112 #define R0(a,b,c,d,k,s,t) { \ argument
117 #define R1(a,b,c,d,k,s,t) { \ argument
122 #define R2(a,b,c,d,k,s,t) { \ argument
127 #define R3(a,b,c,d,k,s,t) { \ argument
/external/dropbear/libtomcrypt/src/prngs/
Dsober128.c47 ulong32 t; in BYTE2WORD() local
56 ulong32 t; in XORWORD() local
74 ulong32 t; in cycle() local
87 #define NLFUNC(c,z) \ argument
97 static ulong32 nltap(struct sober128_prng *c) in nltap()
99 ulong32 t; in nltap() local
112 struct sober128_prng *c; in sober128_start() local
135 static void s128_savestate(struct sober128_prng *c) in s128_savestate()
145 static void s128_reloadstate(struct sober128_prng *c) in s128_reloadstate()
156 static void s128_genkonst(struct sober128_prng *c) in s128_genkonst()
[all …]
/external/openssl/crypto/md4/
Dmd4_locl.h78 #define HASH_MAKE_STRING(c,s) do { \ argument
98 #define F(b,c,d) ((((c) ^ (d)) & (b)) ^ (d)) argument
99 #define G(b,c,d) (((b) & (c)) | ((b) & (d)) | ((c) & (d))) argument
100 #define H(b,c,d) ((b) ^ (c) ^ (d)) argument
102 #define R0(a,b,c,d,k,s,t) { \ argument
106 #define R1(a,b,c,d,k,s,t) { \ argument
110 #define R2(a,b,c,d,k,s,t) { \ argument
/external/javassist/src/main/javassist/compiler/
DLex.java55 Token t; in get() local
101 int t; in get() local
110 int c = getNextNonWhiteChar(); in readLine() local
143 int c; in getNextNonWhiteChar() local
175 int c; in readCharConst() local
194 int c = getc(); in readEscapeChar() local
210 int c; in readStringL() local
243 private int readNumber(int c, Token token) { in readNumber()
310 private int readDouble(StringBuffer sbuf, int c, Token token) { in readDouble()
360 private int readSeparator(int c) { in readSeparator()
[all …]
/external/mksh/src/
Dsyn.c72 #define musthave(c,cf) do { if (token(cf) != (c)) syntaxerr(NULL); } while (/* CONSTCOND */ 0) argument
77 int c; in yyparse() local
92 struct op *t, *p, *tl = NULL; in pipeline() local
112 struct op *t, *p; in andor() local
113 int c; in andor() local
130 struct op *t = NULL, *p, *tl = NULL; in c_list() local
131 int c; in c_list() local
225 struct op *t; in nested() local
238 struct op *t; in get_command() local
239 int c, iopn = 0, syniocf; in get_command() local
[all …]
Dtree.c43 ptree(struct op *t, int indent, struct shf *shf) in ptree()
272 int c; in wdvarput() local
407 int c; in vfptreef() local
477 tcopy(struct op *t, Area *ap) in tcopy()
544 wdscan(const char *wp, int c) in wdscan()
646 tfree(struct op *t, Area *ap) in tfree()
712 vistree(char *dst, size_t sz, struct op *t) in vistree()
714 int c; in vistree() local
738 dumpchar(struct shf *shf, int c) in dumpchar()
752 int c; in dumpwdvar_() local
[all …]
/external/clang/test/CodeGenCXX/
Doverload-binop-implicitconvert.cpp7 T& operator<< (T& t,const char* c) in operator <<()
16 T t; in main() local
/external/webkit/Source/JavaScriptCore/wtf/
DSHA1.cpp81 static inline uint32_t f(int t, uint32_t b, uint32_t c, uint32_t d) in f()
93 static inline uint32_t k(int t) in k()
176 for (int t = 0; t < 16; ++t) in processBlock() local
178 for (int t = 16; t < 80; ++t) in processBlock() local
183 uint32_t c = m_hash[2]; in processBlock() local
187 for (int t = 0; t < 80; ++t) { in processBlock() local
/external/zlib/contrib/minizip/
Dcrypt.h30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) argument
48 static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c) in update_keys()
76 #define zdecode(pkeys,pcrc_32_tab,c) \ argument
79 #define zencode(pkeys,pcrc_32_tab,c,t) \ argument
98 int t; /* temporary */ in crypthead() local
99 int c; /* random byte */ in crypthead() local
/external/clang/test/CodeGen/
D2010-07-14-ref-off-end.c7 unsigned c:24; member
9 f(struct T t) in f()
19 struct T t; in main() local
/external/openssl/crypto/bn/
Dbn_shift.c65 register BN_ULONG *ap,*rp,t,c; in BN_lshift1() local
101 BN_ULONG *ap,*rp,t,c; in BN_rshift1() local
138 BN_ULONG *t,*f; in BN_lshift() local
174 BN_ULONG *t,*f; in BN_rshift() local
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
Dcrypto-md5.js138 function md5_cmn(q, a, b, x, s, t) argument
142 function md5_ff(a, b, c, d, x, s, t) argument
146 function md5_gg(a, b, c, d, x, s, t) argument
150 function md5_hh(a, b, c, d, x, s, t) argument
154 function md5_ii(a, b, c, d, x, s, t) argument
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
Dcrypto-md5.js138 function md5_cmn(q, a, b, x, s, t) argument
142 function md5_ff(a, b, c, d, x, s, t) argument
146 function md5_gg(a, b, c, d, x, s, t) argument
150 function md5_hh(a, b, c, d, x, s, t) argument
154 function md5_ii(a, b, c, d, x, s, t) argument
/external/libvpx/vp8/encoder/
Dtreewriter.c19 int c in cost()
36 void vp8_cost_tokens(int *c, const vp8_prob *p, vp8_tree t) in vp8_cost_tokens()
/external/openssl/crypto/des/
Ddes_locl.h108 #define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \ argument
114 #define c2ln(c,l1,l2,n) { \ argument
129 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
138 #define n2l(c,l) (l =((DES_LONG)(*((c)++)))<<24L, \ argument
143 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ argument
149 #define l2cn(l1,l2,c,n) { \ argument
185 #define LOAD_DATA_tmp(R,S,u,t,E0,E1) \ argument
188 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \ argument
194 #define LOAD_DATA_tmp(a,b,c,d,e,f) LOAD_DATA(a,b,c,d,e,f,g) argument
195 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \ argument
[all …]
/external/dropbear/libtommath/
Dbn_mp_mod.c20 mp_mod (mp_int * a, mp_int * b, mp_int * c) in mp_mod()
22 mp_int t; in mp_mod() local
Dbn_mp_sqrmod.c20 mp_sqrmod (mp_int * a, mp_int * b, mp_int * c) in mp_sqrmod()
23 mp_int t; in mp_sqrmod() local
Dbn_mp_mulmod.c19 int mp_mulmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) in mp_mulmod()
22 mp_int t; in mp_mulmod() local
Dbn_mp_submod.c20 mp_submod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) in mp_submod()
23 mp_int t; in mp_submod() local
Dbn_mp_addmod.c20 mp_addmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) in mp_addmod()
23 mp_int t; in mp_addmod() local
/external/chromium/testing/
Dgmock_mutant.h115 const Tuple0& c) { in DispatchToMethod()
121 const Tuple0& c) { in DispatchToFunction()
129 const Tuple1<C1>& c) { in DispatchToMethod()
135 const Tuple1<C1>& c) { in DispatchToFunction()
143 const Tuple2<C1, C2>& c) { in DispatchToMethod()
149 const Tuple2<C1, C2>& c) { in DispatchToFunction()
158 const Tuple3<C1, C2, C3>& c) { in DispatchToMethod()
164 const Tuple3<C1, C2, C3>& c) { in DispatchToFunction()
173 const Tuple4<C1, C2, C3, C4>& c) { in DispatchToMethod()
180 const Tuple4<C1, C2, C3, C4>& c) { in DispatchToFunction()
[all …]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dutil.h34 inline istream &ReadType(istream &strm, T *t) { in ReadType()
44 char c; in ReadType() local
55 inline ostream &WriteType(ostream &strm, const T t) { in WriteType()
/external/bluetooth/glib/gobject/tests/
Dthreadtests.c93 static void my_tester0_init (MyTester0*t) {} in my_tester0_init()
94 static void my_tester0_class_init (MyTester0Class*c) { call_counter_init (c); } in my_tester0_class_init()
101 static void my_tester1_init (MyTester1*t) {} in my_tester1_init()
102 static void my_tester1_class_init (MyTester1Class*c) { call_counter_init (c); } in my_tester1_class_init()
109 static void my_tester2_init (MyTester2*t) {} in my_tester2_init()
110 static void my_tester2_class_init (MyTester2Class*c) { call_counter_init (c); } in my_tester2_class_init()
169 prop_tester_init (PropTester* t) in prop_tester_init()
181 prop_tester_class_init (PropTesterClass *c) in prop_tester_class_init()
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
Dp7-0x-fixits.cpp10 struct {char c;} c2 = {x}; in fixits() member
21 void maybe_shrink_int(T t) { in maybe_shrink_int()
22 struct {T t;} t2 = {700}; in maybe_shrink_int() member

12345678910>>...25