Searched defs:temp (Results 176 - 200 of 1265) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dcrypt.h37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
/external/chromium_org/v8/src/base/
H A Datomicops_internals_arm64_gcc.h29 int32_t temp; local
36 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
37 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
40 [temp]"=&r" (temp),
53 int32_t temp; local
58 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
59 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
61 [temp]"=&r" (temp),
73 int32_t temp; local
179 int32_t temp; local
203 int32_t temp; local
223 int32_t temp; local
[all...]
H A Datomicops_internals_mips64_gcc.h71 Atomic32 temp, old; local
76 "move %0, %3\n" // temp = new_value
77 "sc %0, %2\n" // *ptr = temp (with atomic check)
81 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
92 Atomic32 temp, temp2; local
97 "ll %0, %2\n" // temp = *ptr
98 "addu %1, %0, %3\n" // temp2 = temp + increment
101 "addu %1, %0, %3\n" // temp2 = temp + increment
103 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
208 Atomic64 temp, ol local
229 Atomic64 temp, temp2; local
[all...]
H A Datomicops_internals_mips_gcc.h48 Atomic32 temp, old; local
54 "move %0, %2\n" // temp = new_value
55 "sc %0, 0(%3)\n" // *ptr = temp (with atomic check)
59 : "=&r" (temp), "=&r" (old)
70 Atomic32 temp, temp2; local
75 "ll %0, 0(%3)\n" // temp = *ptr
76 "addu %1, %0, %2\n" // temp2 = temp + increment
79 "addu %1, %0, %2\n" // temp2 = temp + increment
81 : "=&r" (temp), "=&r" (temp2)
H A Datomicops_internals_x86_gcc.h52 Atomic32 temp = increment; local
54 : "+r" (temp), "+m" (*ptr)
56 // temp now holds the old value of *ptr
57 return temp + increment;
62 Atomic32 temp = increment; local
64 : "+r" (temp), "+m" (*ptr)
66 // temp now holds the old value of *ptr
70 return temp + increment;
184 Atomic64 temp = increment; local
186 : "+r" (temp), "
194 Atomic64 temp = increment; local
[all...]
/external/deqp/framework/common/
H A DtcuCPUWarmup.cpp44 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];
/external/e2fsprogs/ext2ed/
H A Dgroup_com.c110 long group_num,temp; local
112 temp=(device_offset-file_system_info.first_group_desc_offset) % (file_system_info.super_block.s_blocks_per_group*file_system_info.block_size);
113 group_num=temp/sizeof (struct ext2_group_desc);
/external/eigen/bench/spbench/
H A Dsp_solver.cpp49 SparseMatrix<double, ColMajor> temp; local
50 temp = A;
51 A = temp.selfadjointView<Lower>();
H A Dtest_sparseLU.cpp51 SparseMatrix<scalar, ColMajor> temp; local
52 temp = A;
53 A = temp.selfadjointView<Lower>();
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMpar.h40 Scalar temp, paru; local
88 temp = wa1.blueNorm();
89 parl = fp / m_delta / temp / temp;
122 temp = fp;
128 if (abs(fp) <= Scalar(0.1) * m_delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
136 temp = wa1[j];
138 wa1[i] -= s.coeff(i,j) * temp;
140 temp
[all...]
H A DLMqrsolv.h34 Scalar temp; local
73 temp = givens.c() * wa[k] + givens.s() * qtbpj;
75 wa[k] = temp;
79 temp = givens.c() * s(i,k) + givens.s() * sdiag[i];
81 s(i,k) = temp;
114 Scalar temp; local
157 temp = givens.c() * wa(k) + givens.s() * qtbpj;
159 wa(k) = temp;
165 temp = givens.c() * itk.value() + givens.s() * sdiag(i);
167 itk.valueRef() = temp;
[all...]
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Ddogleg.h20 Scalar sum, temp, alpha, bnorm; local
34 temp = qrfac(j,j);
35 if (temp == 0.) {
36 temp = epsmch * qrfac.col(j).head(j+1).maxCoeff();
37 if (temp == 0.)
38 temp = epsmch;
41 x[j] = qtb[j] / temp;
43 x[j] = (qtb[j] - qrfac.row(j).tail(n-j-1).dot(x.tail(n-j-1))) / temp;
82 temp = wa2.stableNorm();
83 sgnorm = gnorm / temp / tem
[all...]
H A Dfdjac1.h22 Scalar eps, temp; local
39 temp = x[j];
40 h = eps * abs(temp);
43 x[j] = temp + h;
47 x[j] = temp;
/external/fdlibm/
H A De_jn.c61 double a, b, temp, di; local
100 case 0: temp = ieee_cos(x)+ieee_sin(x); break;
101 case 1: temp = -ieee_cos(x)+ieee_sin(x); break;
102 case 2: temp = -ieee_cos(x)-ieee_sin(x); break;
103 case 3: temp = ieee_cos(x)-ieee_sin(x); break;
105 b = invsqrtpi*temp/ieee_sqrt(x);
110 temp = b;
112 a = temp;
123 temp = x*0.5; b = temp;
223 double a, b, temp; local
[all...]
/external/icu/icu4c/source/common/
H A Dlocavailable.cpp108 char ** temp; local
111 temp = _installedLocales;
117 uprv_free(temp);
/external/icu/icu4c/source/test/cintltst/
H A Dcg7coll.c204 UChar temp[sizeof(rules)]; local
206 u_uastrcpy(temp, rules);
210 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
235 UChar temp[sizeof(rules)]; local
237 u_uastrcpy(temp, rules);
241 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
264 UChar temp[sizeof(rules)]; local
266 u_uastrcpy(temp, rules);
270 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
294 UChar temp[sizeo local
[all...]
H A Dcstrtest.c42 const char *temp; local
132 temp=uprv_strdup("strdup");
133 if(uprv_strcmp(temp, "strdup") !=0 ){
134 log_err("FAIL: uprv_strdup() failed. Expected: \"strdup\", Got: %s\n", temp);
136 uprv_free((char *)temp);
/external/icu/icu4c/source/test/perf/usetperf/
H A Dusetperf.cpp77 int32_t temp = 0; local
81 temp += cp;
87 int32_t temp = 0; local
90 temp += uit.getCodepoint();
/external/icu/icu4c/source/tools/ctestfw/unicode/
H A Dutimer.h248 UTimer temp; local
249 utimer_getTime(&temp);
250 return uprv_delta(timer,&temp);
/external/libhevc/common/
H A Dihevc_itrans.c249 WORD32 temp; local
259 temp = (pi2_src[src_strd] + pi2_src[3 * src_strd]) * 36;
261 o[0] = temp + 47 * pi2_src[src_strd];
262 o[1] = temp - 119 * pi2_src[3 * src_strd];
/external/libopus/silk/float/
H A Dfind_LTP_FLP.c48 silk_float *b_ptr, temp, *WLTP_ptr; local
75 temp = Wght[ k ] / ( nrg[ k ] * Wght[ k ] + 0.01f * subfr_length );
76 silk_scale_vector_FLP( WLTP_ptr, temp, LTP_ORDER * LTP_ORDER );
108 temp = 1e-3f;
110 temp += w[ k ];
116 m = m / temp;
121 temp = 0;
124 temp += delta_b[ i ];
126 temp = g / temp;
[all...]
H A Dsolve_LS_FLP.c120 silk_float temp; local
125 temp = 0;
127 temp += ptr1[ j * M ] * x[ j ];
129 temp = b[ i ] - temp;
130 x[ i ] = temp;
142 silk_float temp; local
147 temp = 0;
149 temp += ptr1[ j ] * x[ j ];
151 temp
165 double temp, diag_min_value; local
[all...]
/external/libselinux/src/
H A Davc_sidtab.c135 struct sidtab_node *cur, *temp; local
143 temp = cur;
145 freecon(temp->sid_s.ctx);
146 avc_free(temp);
/external/libvorbis/vq/
H A Dlatticebuild.c120 char *temp; local
125 temp=strchr(line,',');
126 if(!temp)temp=strchr(line,' ');
127 if(temp)temp++;
128 line=temp;
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.h31 int temp; local
33 temp = arr[i];
38 arr[j] = temp ;
54 int temp, tempi; local
56 temp = arr[i];
65 arr[j] = temp ;

Completed in 319 milliseconds

1234567891011>>