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

<<11121314151617181920>>

  /external/libxml2/doc/tutorial/
includeconvert.c 10 int ret,size,out_size,temp;
26 temp=size-1;
27 ret = handler->input(out, &out_size, in, &temp);
28 if (ret || temp-size+1) {
32 printf("conversion wasn't successful. converted: %i octets.\n",temp);
  /external/lmfit/test/
test_qr.c 29 double temp = 0; local
31 temp += v[i]*v[i];
34 Q[j*n+i] = ( i==j ? 1 : 0 ) - 2*v[i]*v[j]/temp;
40 double temp; local
43 temp = 0;
45 temp += Q[k*n+i]*R[j*n+k];
47 A[j*n+i] = temp;
55 double temp; local
58 temp = A[j*n+i];
60 A[i*n+j] = temp;
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
denums.swg 43 %typemap(in) const enum SWIGTYPE & ($*1_ltype temp)
44 %{ temp = ($*1_ltype)$input;
45 $1 = &temp; %}
50 %{ static $*1_ltype temp = ($*1_ltype)$input;
51 $result = &temp; %}
  /prebuilts/misc/common/swig/include/2.0.11/pike/
pike.swg 70 %typemap(in, pikedesc="tInt") const int & (int temp),
71 const short & (short temp),
72 const long & (long temp),
73 const unsigned int & (unsigned int temp),
74 const unsigned short & (unsigned short temp),
75 const unsigned long & (unsigned long temp),
76 const char & (char temp),
77 const signed char & (signed char temp),
78 const unsigned char & (unsigned char temp),
79 const bool & (bool temp),
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 450 int32 x0, x1, x2, x4, x5, temp; local
476 temp = ((x0 + x2) >> 14);
477 CLIP_RESULT(temp)
478 word = word | (temp << 8);
479 temp = ((x0 + x1) >> 14);
480 CLIP_RESULT(temp)
481 word = word | (temp << 16);
482 temp = ((x0 + x5) >> 14);
483 CLIP_RESULT(temp)
484 word = word | (temp << 24)
507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
int_lpc.cpp 443 Word16 temp; local
450 temp = shr(lsp_old[i], 2, pOverflow);
451 temp = sub(lsp_old[i], temp, pOverflow);
454 lsp[i] = add(temp2, temp, pOverflow);
467 temp = shr(lsp_new[i], 1, pOverflow);
469 lsp[i] = add(temp, temp2, pOverflow);
481 temp = shr(lsp_new[i], 2, pOverflow);
482 temp = sub(lsp_new[i], temp, pOverflow)
580 Word16 temp; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
cstring.i 34 %typemap(ignore) TYPEMAP(char temp[MAX+1]) {
35 $1 = ($1_ltype) temp;
57 %typemap(ignore) TYPEMAP(char temp[SIZE]) {
58 $1 = ($1_ltype) temp;
82 %typemap(in) TYPEMAP(char temp[MAX+1]) {
84 strncpy(temp,t,MAX);
85 $1 = ($1_ltype) temp;
221 %typemap(ignore) TYPEMAP($*1_ltype temp = 0) {
222 $1 = &temp;
250 %typemap(ignore) (TYPEMAP, SIZE) ($*1_ltype temp = 0, $*2_ltype tempn)
    [all...]
std_string.i 39 %typemap(in) const string & ($*1_ltype temp) {
42 temp.assign((char *)caml_ptr_val($input,0), caml_string_len($input));
43 $1 = &temp;
49 %typemap(in) string & ($*1_ltype temp) {
52 temp.assign((char *)caml_ptr_val($input,0), caml_string_len($input));
53 $1 = &temp;
59 %typemap(in) string * ($*1_ltype *temp) {
62 temp = new $*1_ltype((char *)caml_ptr_val($input,0), caml_string_len($input));
63 $1 = temp;
69 %typemap(free) string * ($*1_ltype *temp) {
    [all...]
  /external/libxaac/decoder/
ixheaacd_mps_hybrid_filt.c 41 WORD64 temp; local
43 temp = (WORD64)a * (WORD64)b;
44 temp = temp >> shift;
45 return (WORD32)temp;
57 WORD32 temp; local
79 temp = ixheaacd_mps_mult32_local(in_re, modulation_fac_re, 30) -
82 if (temp >= 1073741823)
83 temp = 1073741823;
84 else if (temp <= -1073741824
117 WORD32 temp; local
    [all...]
  /external/ltp/testcases/kernel/syscalls/memcmp/
memcmp01.c 56 FILE *temp; variable
87 fprintf(temp, "\tmemcmp fails - should have succeeded.\n");
94 fprintf(temp, "\tmemcmp succeeded - should have failed.\n");
102 fprintf(temp, "\tmemcmp succeeded - should have failed.\n");
110 fprintf(temp, "\tmemcmp succeeded - should have failed.\n");
118 fprintf(temp, "\tmemcmp succeeded - should have failed.\n");
125 fprintf(temp, "\tmemcmp fails - should have succeeded.\n");
142 fprintf(temp, "\tmemcmp fails - should have succeeded.\n");
149 fprintf(temp, "\tmemcmp succeeded - should have failed.\n");
157 fprintf(temp, "\tmemcmp succeeded - should have failed.\n")
    [all...]
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.c 762 int32_t temp; local
825 temp = (pReverb->m_nRoomLpfFwd << 15)
827 *pValue16 = Effects_Linear16ToMillibels(temp);
829 ALOGV("get REVERB_PARAM_ROOM_LEVEL %d, gain %d, m_nRoomLpfFwd %d, m_nRoomLpfFbk %d", *pValue16, temp, pReverb->m_nRoomLpfFwd, pReverb->m_nRoomLpfFbk);
843 temp = MULT_EG1_EG1(pReverb->m_nRoomLpfFbk, pReverb->m_nRoomLpfFbk);
844 ALOGV("get REVERB_PARAM_ROOM_HF_LEVEL, a1^2 %d", temp);
848 temp = 32767 + temp - temp2;
849 ALOGV("get REVERB_PARAM_ROOM_HF_LEVEL, a1^2 + 2 Cos a1 + 1 %d", temp);
850 temp = Effects_Sqrt(temp) * 181
1045 int32_t temp; local
1906 int temp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 1525 ULong temp, temp2; local
1559 temp = *(src += lx); local
1677 temp = *(src += lx); local
1722 ULong temp; local
1769 ULong temp; local
1802 ULong temp; local
1869 ULong temp; local
    [all...]
  /external/deqp/framework/common/
tcuCPUWarmup.cpp 44 T temp[Size]; variable
46 temp[i] = v[i];
48 std::sort(DE_ARRAY_BEGIN(temp), DE_ARRAY_END(temp));
51 ? 0.5f * ((float)temp[Size/2-1] + (float)temp[Size/2])
52 : (float)temp[Size/2];
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.cpp 241 Word16 temp; local
286 temp = *(p_y2++) >> 1;
287 s += ((Word32) temp * temp) >> 2;
288 temp = *(p_y2++) >> 1;
289 s += ((Word32) temp * temp) >> 2;
cbsearch.cpp 202 Word16 temp; local
287 temp =
296 temp,
319 temp =
328 temp,
345 temp = ((Word32)h[i - T0] * pit_sharpTmp) >> 15;
355 temp,
378 temp =
387 temp,
  /external/libcups/filter/
common.c 210 float temp; /* Swapping variable */ local
219 temp = PageLeft;
221 PageBottom = temp;
223 temp = PageRight;
225 PageTop = temp;
227 temp = PageWidth;
229 PageLength = temp;
233 temp = PageWidth - PageLeft;
235 PageRight = temp;
237 temp = PageLength - PageBottom
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-config/
Makefile 62 > temp.sed
64 >> temp.sed
66 >> temp.sed
68 >> temp.sed
70 >> temp.sed
71 $(Verb) $(SED) -f temp.sed < $< > $@
72 $(Verb) $(RM) temp.sed
82 > temp.sed
84 >> temp.sed
86 >> temp.sed
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jnf.c 38 float a, b, temp, di; local
64 temp = b;
66 a = temp;
76 temp = x*(float)0.5; b = temp;
79 b *= temp; /* b = (x/2)^n */
140 temp = b;
143 a = temp;
148 temp = b;
151 a = temp;
177 float a, b, temp; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
LimitedLengthInputStreamTest.java 82 byte[] temp = new byte[TEST_STRING1.length];
89 assertEquals(length, is.read(temp, 0, temp.length));
91 System.arraycopy(temp, 0, actual, 0, length);
94 assertEquals(-1, is.read(temp, 0, temp.length));
122 byte[] temp = new byte[TEST_STRING1.length + 10];
124 assertEquals(TEST_STRING1.length, is.read(temp, 0, TEST_STRING1.length + 10));
127 System.arraycopy(temp, 0, actual, 0, actual.length);
132 byte[] temp = new byte[TEST_STRING1.length]
    [all...]
  /external/ltp/testcases/kernel/syscalls/kill/
kill12.c 58 FILE *temp; variable
90 fprintf(temp, "\tsigset failed, errno = %d\n", errno);
95 fflush(temp);
106 //fprintf(temp, "Testing signal %d\n", sig);
118 fprintf(temp,
144 fprintf(temp, "wait error: unexpected signal"
151 fprintf(temp, "wait error: unexpected signal "
162 fprintf(temp, "signal error: unexpected"
170 fprintf(temp, "signal error: unexpected exit "
211 temp = stderr
    [all...]
  /external/selinux/mcstrans/src/
mls_level.c 84 char temp[16]; local
91 len += snprintf(temp, sizeof(temp), "s%d", l->sens);
102 len += snprintf(temp, sizeof(temp), "c%d", i);
106 len += snprintf(temp, sizeof(temp), ".c%d", i-1);
113 len += snprintf(temp, sizeof(temp), ".c%d", i-1);
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
rwupdt.h 19 Scalar temp, rowj; local
28 temp = givens[i].c() * r(i,j) + givens[i].s() * rowj;
30 r(i,j) = temp;
41 temp = givens[j].c() * b[j] + givens[j].s() * alpha;
43 b[j] = temp;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
ConstantMultiFieldModifier.java 57 NumberStringBuilder temp = new NumberStringBuilder(); local
58 apply(temp, 0, 0);
60 return String.format("<ConstantMultiFieldModifier prefix:'%s' suffix:'%s'>", temp.subSequence(0, prefixLength),
61 temp.subSequence(prefixLength, temp.length()));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
ConstantMultiFieldModifier.java 55 NumberStringBuilder temp = new NumberStringBuilder(); local
56 apply(temp, 0, 0);
58 return String.format("<ConstantMultiFieldModifier prefix:'%s' suffix:'%s'>", temp.subSequence(0, prefixLength),
59 temp.subSequence(prefixLength, temp.length()));
  /external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.assign/
member_swap.pass.cpp 23 std::string temp = get_temp_file_name(); local
26 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
38 std::remove(temp.c_str());
41 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
53 std::remove(temp.c_str());

Completed in 682 milliseconds

<<11121314151617181920>>