Searched refs:tmp (Results 226 - 250 of 2163) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Drsa.c268 struct bignum *tmp, *a = NULL, *b = NULL; local
275 tmp = bignum_init();
276 if (tmp == NULL)
279 if (bignum_set_unsigned_bin(tmp, in, inlen) < 0)
281 if (bignum_cmp(key->n, tmp) < 0) {
289 * up calculation. This is equivalent to tmp = tmp^d mod n
305 /* a = tmp^dmp1 mod p */
306 if (bignum_exptmod(tmp, key->dmp1, key->p, a) < 0)
309 /* b = tmp
[all...]
/external/libpcap/missing/
H A Dsnprintf.c102 unsigned char *tmp;
110 tmp = realloc (state->str, state->sz);
111 if (tmp == NULL)
113 state->str = tmp;
477 char *tmp; local
479 tmp = malloc (sz);
480 if (tmp == NULL)
483 ret2 = vsprintf (tmp, format, args);
484 if (ret != ret2 || strcmp(str, tmp))
486 free (tmp);
[all...]
/external/tcpdump/missing/
H A Dsnprintf.c102 unsigned char *tmp;
110 tmp = realloc (state->str, state->sz);
111 if (tmp == NULL)
113 state->str = tmp;
477 char *tmp; local
479 tmp = malloc (sz);
480 if (tmp == NULL)
483 ret2 = vsprintf (tmp, format, args);
484 if (ret != ret2 || strcmp(str, tmp))
486 free (tmp);
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip_util.c50 struct brw_reg tmp = brw_vec4_grf(c->last_tmp, 0); local
55 return tmp;
58 static void release_tmp( struct brw_clip_compile *c, struct brw_reg tmp )
60 if (tmp.nr == c->last_tmp-1)
111 struct brw_reg tmp = get_tmp(c); local
120 brw_MOV(p, tmp, deref_4f(vert_addr, hpos_offset));
121 brw_clip_project_position(c, tmp);
122 brw_MOV(p, deref_4f(vert_addr, ndc_offset), tmp);
124 release_tmp(c, tmp);
141 struct brw_reg tmp local
351 struct brw_reg tmp = retype(vec1(get_tmp(c)), BRW_REGISTER_TYPE_UD); local
[all...]
/external/boringssl/src/crypto/bn/
H A Dexponentiation.c863 BIGNUM tmp, am; local
932 * powers of am, am itself and tmp.
959 /* lay down tmp and am right after powers table */
960 tmp.d = (BN_ULONG *)(powerbuf + sizeof(m->d[0]) * top * numPowers);
961 am.d = tmp.d + top;
962 tmp.top = am.top = 0;
963 tmp.dmax = am.dmax = top;
964 tmp.neg = am.neg = 0;
965 tmp.flags = am.flags = BN_FLG_STATIC_DATA;
971 tmp
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java607 byte[] tmp = new byte[newLength];
611 System.arraycopy(data, 0, tmp, 0, newLength);
615 System.arraycopy(data, 0, tmp, 0, data.length);
618 return tmp;
623 char[] tmp = new char[newLength];
627 System.arraycopy(data, 0, tmp, 0, newLength);
631 System.arraycopy(data, 0, tmp, 0, data.length);
634 return tmp;
639 int[] tmp = new int[newLength];
643 System.arraycopy(data, 0, tmp,
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h349 union fi tmp; local
350 tmp.f = x;
351 return (tmp.ui & 0x7f800000) == 0x7f800000;
358 union fi tmp; local
359 tmp.f = x;
360 return (tmp.ui & 0x7fffffff) > 0x7f800000;
367 union fi tmp; local
368 tmp.f = x;
369 if ((tmp.ui & 0x7fffffff) != 0x7f800000) {
383 union di tmp; local
392 union di tmp; local
401 union di tmp; local
541 union fi tmp; local
[all...]
H A Du_format_s3tc.c197 uint8_t tmp[4]; local
198 util_format_dxt1_rgb_fetch(0, src, i, j, tmp);
199 dst[0] = ubyte_to_float(tmp[0]);
200 dst[1] = ubyte_to_float(tmp[1]);
201 dst[2] = ubyte_to_float(tmp[2]);
208 uint8_t tmp[4]; local
209 util_format_dxt1_rgba_fetch(0, src, i, j, tmp);
210 dst[0] = ubyte_to_float(tmp[0]);
211 dst[1] = ubyte_to_float(tmp[1]);
212 dst[2] = ubyte_to_float(tmp[
219 uint8_t tmp[4]; local
230 uint8_t tmp[4]; local
325 uint8_t tmp[4]; local
398 uint8_t tmp[4][4][3]; /* [bh][bw][comps] */ local
423 uint8_t tmp[4][4][4]; /* [bh][bw][comps] */ local
448 uint8_t tmp[4][4][4]; /* [bh][bw][comps] */ local
474 uint8_t tmp[4][4][4]; /* [bh][bw][comps] */ local
498 uint8_t tmp[4][4][3]; local
522 uint8_t tmp[4][4][4]; local
546 uint8_t tmp[4][4][4]; local
570 uint8_t tmp[4][4][4]; local
[all...]
/external/openfst/src/include/fst/extensions/far/
H A Dextract.h49 ostringstream tmp; local
50 tmp.width(generate_filenames);
51 tmp.fill('0');
52 tmp << i;
53 ofilename = tmp.str();
56 ostringstream tmp; local
57 tmp << '.' << nrep;
58 key.append(tmp.str().data(), tmp.str().size());
/external/openssh/openbsd-compat/
H A Dinet_ntop.c89 char tmp[sizeof "255.255.255.255"]; local
92 l = snprintf(tmp, size, fmt, src[0], src[1], src[2], src[3]);
97 strlcpy(dst, tmp, size);
117 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"]; local
158 tp = tmp;
159 ep = tmp + sizeof(tmp);
203 if ((size_t)(tp - tmp) > size) {
207 strlcpy(dst, tmp, size);
/external/skia/src/core/
H A DSkCubicClipper.cpp131 SkPoint tmp[7]; // for SkChopCubicAt local
135 SkChopCubicAt(dst, tmp, t);
136 dst[0] = tmp[3];
137 dst[1] = tmp[4];
138 dst[2] = tmp[5];
143 SkChopCubicAt(dst, tmp, t);
144 dst[1] = tmp[1];
145 dst[2] = tmp[2];
146 dst[3] = tmp[3];
/external/bison/examples/calc++/
H A DMakefile.am35 $(AM_V_GEN)rm -f $@ $@.tmp
36 $(AM_V_at)touch $@.tmp
41 $(AM_V_at)mv $@.tmp $@
51 CLEANFILES = $(srcdir)/*.output *.tmp
64 $(AM_V_GEN)rm -f calc++-parser.tmp
65 $(AM_V_at)touch calc++-parser.tmp
68 $(AM_V_at)mv -f calc++-parser.tmp $@
/external/tcpdump/
H A Dprint-isoclns.c1443 int stlv_type, stlv_len, tmp; local
1482 tmp = *(tptr++);
1486 while (tmp)
1507 tmp--;
2093 u_int8_t pdu_type, max_area, id_length, tlv_type, tlv_len, tmp, alen, lan_alen, prefix_len; local
2449 tmp =tlv_len; /* copy temporary len & pointer to packet data */
2473 while (tmp && alen < tmp) {
2478 tmp -= alen + 1;
2479 if (tmp
[all...]
/external/android-clat/
H A Dconfig.c46 const char *tmp; local
48 if(!(tmp = config_str(root, item_name, defaultvar))) {
52 return strdup(tmp);
63 const char *tmp; local
67 if(!(tmp = config_str(root, item_name, defaultvar))) {
73 conf_int = strtol(tmp,&endptr,10);
75 logmsg(ANDROID_LOG_FATAL,"%s config item is not numeric: %s (error=%s)",item_name,tmp,strerror(errno));
78 if(endptr == tmp || *tmp == '\0') {
79 logmsg(ANDROID_LOG_FATAL,"%s config item is not numeric: %s",item_name,tmp);
102 const char *tmp; local
127 const char *tmp; local
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dzdump.c230 static char * abbr(struct tm * tmp);
233 static void dumptime(const struct tm * tmp);
257 register struct tm * tmp; local
259 tmp = localtime(tp);
260 if (tp != NULL && tmp != NULL) {
264 tm = *tmp;
271 (void) fprintf(stderr, " year=%d", tmp->tm_year);
272 (void) fprintf(stderr, " mon=%d", tmp->tm_mon);
273 (void) fprintf(stderr, " mday=%d", tmp->tm_mday);
274 (void) fprintf(stderr, " hour=%d", tmp
350 register struct tm * tmp; local
739 register struct tm * tmp; local
802 register struct tm * tmp; local
833 abbr(struct tm *tmp) argument
934 register struct tm * tmp; local
[all...]
/external/libxml2/
H A Ddict.c893 xmlDictEntryPtr tmp; local
895 for (tmp = &(dict->subdict->dict[key]); tmp->next != NULL;
896 tmp = tmp->next) {
898 if ((tmp->okey == skey) && (tmp->len == l)) {
899 if (!memcmp(tmp->name, name, l))
900 return(tmp->name);
903 if ((tmp
1030 xmlDictEntryPtr tmp; local
1124 xmlDictEntryPtr tmp; local
[all...]
/external/webp/src/dsp/
H A Denc.c94 int C[4 * 4], *tmp; local
96 tmp = C;
102 tmp[0] = a + d;
103 tmp[1] = b + c;
104 tmp[2] = b - c;
105 tmp[3] = a - d;
106 tmp += 4;
110 tmp = C;
112 const int dc = tmp[0] + 4;
113 const int a = dc + tmp[
135 int tmp[16]; local
164 int32_t tmp[16]; local
542 int tmp[16]; local
[all...]
/external/apache-http/src/org/apache/http/util/
H A DEntityUtils.java82 byte[] tmp = new byte[4096];
84 while((l = instream.read(tmp)) != -1) {
85 buffer.append(tmp, 0, l);
138 char[] tmp = new char[1024];
140 while((l = reader.read(tmp)) != -1) {
141 buffer.append(tmp, 0, l);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRC4Engine.java63 byte tmp = engineState[x];
65 engineState[y] = tmp;
94 byte tmp = engineState[x];
96 engineState[y] = tmp;
140 byte tmp = engineState[i];
142 engineState[i2] = tmp;
/external/libhevc/common/arm/
H A Dihevc_inter_pred_luma_copy_w16out.s157 vshl.i16 q0,q8,#6 @vshlq_n_s16(tmp, 6)
158 vshl.i16 q1,q9,#6 @vshlq_n_s16(tmp, 6)
159 vshl.i16 q2,q10,#6 @vshlq_n_s16(tmp, 6)
160 vshl.i16 q3,q11,#6 @vshlq_n_s16(tmp, 6)
168 vst1.16 {d0,d1},[r1]! @vst1q_s16(pi2_dst_tmp, tmp)
181 vst1.16 {d2,d3},[r10],r5 @vst1q_s16(pi2_dst_tmp, tmp)
184 vst1.16 {d4,d5},[r10],r5 @vst1q_s16(pi2_dst_tmp, tmp)
187 vst1.16 {d6,d7},[r10],r5 @vst1q_s16(pi2_dst_tmp, tmp)
198 vshl.i16 q0,q8,#6 @vshlq_n_s16(tmp, 6)
201 vshl.i16 q1,q9,#6 @vshlq_n_s16(tmp,
[all...]
/external/libvncserver/x11vnc/misc/
H A Drx11vnc.pl135 # tmp file. The sleep at the end is to give us enough time to connect
149 # Run ssh and redir into a tmp file (assumes ssh will use /dev/tty
152 $tmp = "/tmp/rx.$$";
153 system("$ssh_cmd > $tmp");
163 if (`cat $tmp` =~ /PORT=(\d+)/) {
167 if (`cat $tmp` =~ /PORT=(\d+)/) {
176 print STDERR `cat $tmp`;
177 unlink($tmp);
180 unlink($tmp);
[all...]
/external/skia/tools/
H A Dsk_tool_utils.cpp56 SkBitmap tmp(bitmap);
57 tmp.lockPixels();
59 const SkImageInfo info = SkImageInfo::Make(tmp.width(), tmp.height(), colorType, alphaType);
61 canvas->writePixels(info, tmp.getPixels(), tmp.rowBytes(), x, y);
/external/srtp/crypto/include/
H A Ddatatypes.h277 uint64_t tmp; \
279 tmp = x->v32[3] + y->v32[3]; \
280 z->v32[3] = (uint32_t) tmp; \
282 tmp = x->v32[2] + y->v32[2] + (tmp >> 32); \
283 z->v32[2] = (uint32_t) tmp; \
285 tmp = x->v32[1] + y->v32[1] + (tmp >> 32); \
286 z->v32[1] = (uint32_t) tmp; \
288 tmp
[all...]
/external/valgrind/helgrind/tests/
H A Dtc11_XCHG.c103 int tmp; \
104 while ((tmp = *(int*)(& _addr)), \
105 ! __sync_bool_compare_and_swap((int*)&_addr, tmp, _lval)) \
107 _lval = tmp; \
113 do { int tmp = *(int*)(& _addr); \
115 _lval = tmp; \
/external/aac/libAACenc/src/
H A Dband_nrg.cpp107 FIXP_DBL maxSpc, tmp; local
112 tmp = fixp_abs(mdctSpectrum[j]);
113 maxSpc = fixMax(maxSpc, tmp);
142 FIXP_DBL tmp = 0; local
145 tmp = fPow2AddDiv2(tmp, spec);
147 bandEnergy[i] = tmp<<1;
191 FIXP_DBL tmp = FL2FXCONST_DBL(0.0); local
196 tmp = fPow2AddDiv2(tmp, spe
264 FIXP_DBL tmp = FL2FXCONST_DBL(0.0); local
[all...]

Completed in 1115 milliseconds

1234567891011>>