HomeSort by relevance Sort by last modified time
    Searched refs:tmp (Results 251 - 275 of 1436) sorted by null

<<11121314151617181920>>

  /external/quake/quake/src/WinQuake/
snd_linux.cpp 42 int tmp; local
142 tmp = 0;
144 tmp = 1;
145 rc = ioctl(audio_fd, SNDCTL_DSP_STEREO, &tmp);
153 if (tmp)
201 tmp = 0;
202 rc = ioctl(audio_fd, SNDCTL_DSP_SETTRIGGER, &tmp);
210 tmp = PCM_ENABLE_OUTPUT;
211 rc = ioctl(audio_fd, SNDCTL_DSP_SETTRIGGER, &tmp);
  /external/icu4c/tools/tzcode/
zdump.c 164 static char * abbr(struct tm * tmp);
167 static void dumptime(const struct tm * tmp);
193 register struct tm * tmp; local
195 tmp = localtime(tp);
196 if (tp != NULL && tmp != NULL) {
200 tm = *tmp;
207 (void) fprintf(stderr, " year=%d", tmp->tm_year);
208 (void) fprintf(stderr, " mon=%d", tmp->tm_mon);
209 (void) fprintf(stderr, " mday=%d", tmp->tm_mday);
210 (void) fprintf(stderr, " hour=%d", tmp->tm_hour)
291 register struct tm * tmp; local
680 register struct tm * tmp; local
745 register struct tm * tmp; local
878 register struct tm * tmp; local
    [all...]
localtime.c 151 struct tm * tmp);
153 struct tm * tmp);
162 static time_t time1(struct tm * tmp,
166 static time_t time2(struct tm *tmp,
170 static time_t time2sub(struct tm *tmp,
175 const struct state * sp, struct tm * tmp);
1232 localsub(timep, offset, tmp)
1235 struct tm * const tmp;
1246 return gmtsub(timep, offset, tmp);
1273 result = localsub(&newt, offset, tmp);
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-validate-input.js 64 var tmp = "";
68 tmp += letters[l];
70 return tmp;
75 var tmp = "";
79 tmp = tmp.concat(l);
81 return tmp;
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-validate-input.js 64 var tmp = "";
68 tmp += letters[l];
70 return tmp;
75 var tmp = "";
79 tmp = tmp.concat(l);
81 return tmp;
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
dct.cpp 48 Int tmp, tmp2; local
60 tmp = *((Int*) cur); /* contains 4 pixels */
63 k1 = mask & (tmp << 1);
66 k2 = mask & (tmp >> 7);
69 k3 = mask & (tmp >> 15);
72 k4 = mask & (tmp >> 23);
74 tmp = *((Int*)(cur + 4)); /* another 4 pixels */
77 k5 = mask & (tmp << 1);
80 k6 = mask & (tmp >> 7);
83 k7 = mask & (tmp >> 15)
276 Int tmp, tmp2; local
482 Int tmp, tmp2; local
662 Int *curInt, tmp; local
872 Int *curInt, tmp; local
1059 Int *curInt, tmp; local
    [all...]
fastquant_inline.h 63 __inline int32 coeff_dequant(int32 q_value, int32 QPx2, int32 Addition, int32 tmp)
67 OSCL_UNUSED_ARG(tmp);
109 __inline int32 clip_2047(int32 q_value, int32 tmp)
111 OSCL_UNUSED_ARG(tmp);
125 __inline int32 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp)
129 OSCL_UNUSED_ARG(tmp);
150 __inline int32 coeff_dequant_mpeg_intra(int32 q_value, int32 tmp)
152 OSCL_UNUSED_ARG(tmp);
195 mov coeff, q_value, asr shift /*smull tmp, coeff, q_scale, coeff*/
203 __inline int32 coeff_dequant(int32 q_value, int32 QPx2, int32 Addition, int32 tmp)
216 eorhi coeff, tmp, coeff, asr #31 local
260 eorhi q_value, tmp, q_value, asr #31 local
312 eorhi coeff, tmp, coeff, asr #31 local
357 eorhi q_value, tmp, q_value, asr #31 local
403 eorhi q_value, tmp, q_value, asr #31 local
421 eorhi q_value, tmp, q_value, asr #31 local
    [all...]
  /external/webkit/JavaScriptCore/assembler/
ARMAssembler.cpp 202 ARMWord tmp; local
205 tmp = getOp2(imm);
206 if (tmp != INVALID_IMM)
207 return tmp;
209 tmp = getOp2(~imm);
210 if (tmp != INVALID_IMM) {
212 return tmp | OP2_INV_IMM;
213 mvn_r(tmpReg, tmp);
222 ARMWord tmp; local
225 tmp = getOp2(imm)
243 ARMWord tmp = getImm16Op2(imm); local
    [all...]
  /external/libxml2/
dict.c 785 xmlDictEntryPtr tmp; local
787 for (tmp = &(dict->subdict->dict[key]); tmp->next != NULL;
788 tmp = tmp->next) {
790 if ((tmp->okey == skey) && (tmp->len == len)) {
791 if (!memcmp(tmp->name, name, len))
792 return(tmp->name);
795 if ((tmp->okey == skey) && (tmp->len == len) &
916 xmlDictEntryPtr tmp; local
1010 xmlDictEntryPtr tmp; local
    [all...]
  /bionic/libc/inet/
inet_pton.c 77 u_char tmp[INADDRSZ], *tp; local
81 *(tp = tmp) = 0;
107 memcpy(dst, tmp, INADDRSZ);
129 u_char tmp[IN6ADDRSZ], *tp, *endp, *colonp; local
134 memset((tp = tmp), '\0', IN6ADDRSZ);
210 memcpy(dst, tmp, IN6ADDRSZ);
  /cts/tools/dasm/src/dasm/
Scanner.java 46 char tmp[] = new char[buffer_size * 2]; local
47 System.arraycopy(buffer, 0, tmp, 0, buffer_size);
49 buffer = tmp;
182 int tmp = Character.digit((char) nextChar, 16); local
183 if (tmp == -1)
185 result = (result << 4) | tmp;
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 77 byte[] tmp = new byte[4096];
79 while((l = instream.read(tmp)) != -1) {
80 buffer.append(tmp, 0, l);
133 char[] tmp = new char[1024]; local
135 while((l = reader.read(tmp)) != -1) {
136 buffer.append(tmp, 0, l);
  /external/opencore/oscl/oscl/osclbase/src/
oscl_byte_order.inl 51 char tmp;
59 tmp = *ptr1;
61 *ptr2-- = tmp;
oscl_exclusive_ptr.h 168 T *tmp = _Ptr; local
170 return (tmp);
307 T *tmp = _Ptr; local
309 return (tmp);
446 T *tmp = _Ptr; local
448 return (tmp);
  /external/stlport/stlport/stl/pointers/
_deque.h 42 iterator tmp; local
43 tmp._M_cur = cast_traits::to_value_type_ptr(__ite._M_cur);
44 tmp._M_first = cast_traits::to_value_type_ptr(__ite._M_first);
45 tmp._M_last = cast_traits::to_value_type_ptr(__ite._M_last);
46 tmp._M_node = cast_traits::to_value_type_pptr(__ite._M_node);
47 return tmp;
50 storage_iterator tmp; local
51 tmp._M_cur = cast_traits::to_storage_type_ptr(__ite._M_cur);
52 tmp._M_first = cast_traits::to_storage_type_ptr(__ite._M_first);
53 tmp._M_last = cast_traits::to_storage_type_ptr(__ite._M_last)
59 const_iterator tmp; local
68 const_storage_iterator tmp; local
    [all...]
  /bionic/libc/tzcode/
localtime.c 212 struct tm * tmp));
214 struct tm * tmp));
223 static time_t time1 P((struct tm * tmp,
227 static time_t time2 P((struct tm *tmp,
231 static time_t time2sub P((struct tm *tmp,
236 const struct state * sp, struct tm * tmp));
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/
gc_pred.cpp 487 Word16 tmp; local
502 tmp = *(p_code++);
503 ener_code += ((Word32) tmp * tmp) >> 3;
504 tmp = *(p_code++);
505 ener_code += ((Word32) tmp * tmp) >> 3;
506 tmp = *(p_code++);
507 ener_code += ((Word32) tmp * tmp) >> 3
    [all...]
  /external/openssl/crypto/bn/
bn_sqr.c 69 BIGNUM *tmp,*rr; local
85 tmp=BN_CTX_get(ctx);
86 if (!rr || !tmp) goto err;
126 if (bn_wexpand(tmp,k*2) == NULL) goto err;
127 bn_sqr_recursive(rr->d,a->d,al,tmp->d);
131 if (bn_wexpand(tmp,max) == NULL) goto err;
132 bn_sqr_normal(rr->d,a->d,al,tmp->d);
136 if (bn_wexpand(tmp,max) == NULL) goto err;
137 bn_sqr_normal(rr->d,a->d,al,tmp->d);
152 bn_check_top(tmp);
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
gc_pred.cpp 487 Word16 tmp; local
502 tmp = *(p_code++);
503 ener_code += ((Word32) tmp * tmp) >> 3;
504 tmp = *(p_code++);
505 ener_code += ((Word32) tmp * tmp) >> 3;
506 tmp = *(p_code++);
507 ener_code += ((Word32) tmp * tmp) >> 3
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
ComparableTimSort.java 69 * Maximum initial size of tmp array, which is used for merging. The array
80 private Object[] tmp; field in class:ComparableTimSort
116 tmp = newArray;
445 // Merge remaining runs, using tmp array with min(len1, len2) elements
503 int tmp = lastOfs; local
505 ofs = hint - tmp;
558 int tmp = lastOfs;
560 ofs = hint - tmp;
619 Object[] tmp = ensureCapacity(len1);
620 System.arraycopy(a, base1, tmp, 0, len1)
    [all...]
TimSort.java 94 * Maximum initial size of tmp array, which is used for merging. The array
105 private T[] tmp; // Actual runtime type will be Object[], regardless of T field in class:TimSort
143 tmp = newArray;
477 // Merge remaining runs, using tmp array with min(len1, len2) elements
535 int tmp = lastOfs; local
537 ofs = hint - tmp;
591 int tmp = lastOfs;
593 ofs = hint - tmp;
651 T[] tmp = ensureCapacity(len1);
652 System.arraycopy(a, base1, tmp, 0, len1)
    [all...]
  /external/srec/srec/Semproc/src/
SemanticGraphImpl.c 177 asr_uint32_t tmp[32]; local
189 tmp = new unsigned short[num_words];
190 if( pfread( tmp, sizeof(tmp[0]), num_words, fp) != num_words) {
206 if (pfread(tmp, sizeof(tmp[0]), nfields, fp) != nfields)
213 impl->script_olabel_offset = (wordID)tmp[i++];
214 impl->scopes_olabel_offset = (wordID)tmp[i++];
530 arc_token* tmp; local
533 tmp = ARC_TOKEN_PTR(arc_token_list, atoken->first_next_arc)
683 asr_uint32_t tmp[32]; local
811 arc_token* tmp = (*arc_token_freelist); local
823 arc_token* tmp = head; local
1024 arc_token *token, *tmp; local
1185 arc_token* tmp; local
1230 arcID tmp[32]; local
1279 arcID tmp[32]; local
    [all...]
  /external/qemu/
gdbstub.c 563 uint32_t tmp; local
591 tmp = ldl_p(mem_buf);\
592 if (tmp != env->segs[sreg].selector)\
593 cpu_x86_load_seg(env, sreg, tmp);
608 tmp = ldl_p(mem_buf);
609 env->fpstt = (tmp >> 11) & 7;
610 env->fpus = tmp & ~0x3800;
795 abi_ulong tmp; local
797 tmp = ldl_p(mem_buf);
799 target_ulong tmp;
896 uint32_t tmp; local
958 uint32_t tmp; local
1029 target_ulong tmp; local
1119 uint32_t tmp; local
1175 uint32_t tmp; local
1222 uint32_t tmp; local
1282 target_ulong tmp; local
    [all...]
  /bionic/libm/src/
e_jnf.c 110 float q0,q1,h,tmp; int32_t k,m; local
115 tmp = z*q1 - q0;
117 q1 = tmp;
131 tmp = n;
133 tmp = tmp*__ieee754_logf(fabsf(v*tmp));
134 if(tmp<(float)8.8721679688e+01) {
  /external/bluetooth/glib/build/win32/dirent/
dirent-zip 5 ZIP=/tmp/dirent.zip

Completed in 1858 milliseconds

<<11121314151617181920>>