Searched refs:temp (Results 251 - 275 of 1627) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/base/win/
H A Dshortcut.cc205 wchar_t temp[MAX_PATH]; local
207 if (FAILED(i_shell_link->GetPath(temp, MAX_PATH, NULL, SLGP_UNCPRIORITY)))
209 properties->set_target(FilePath(temp));
213 if (FAILED(i_shell_link->GetWorkingDirectory(temp, MAX_PATH)))
215 properties->set_working_dir(FilePath(temp));
219 if (FAILED(i_shell_link->GetArguments(temp, MAX_PATH)))
221 properties->set_arguments(temp);
226 if (FAILED(i_shell_link->GetDescription(temp, MAX_PATH)))
228 properties->set_description(temp);
233 if (FAILED(i_shell_link->GetIconLocation(temp, MAX_PAT
[all...]
/external/smack/src/org/xbill/DNS/
H A DLOCRecord.java190 long temp = value - (1L << 31);
191 if (temp < 0) {
192 temp = -temp;
197 sb.append(temp / (3600 * 1000)); /* degrees */
198 temp = temp % (3600 * 1000);
201 sb.append(temp / (60 * 1000)); /* minutes */
202 temp = temp
[all...]
/external/checkpolicy/
H A Dqueue.c109 queue_node_ptr_t p, temp; local
116 temp = p;
118 free(temp);
146 queue_node_ptr_t p, last, temp; local
167 temp = p;
169 g(temp->element, vp);
170 free(temp);
/external/chromium_org/gpu/command_buffer/service/
H A Drenderbuffer_manager.cc161 uint32 temp = 0; local
162 if (!SafeMultiplyUint32(width, height, &temp)) {
165 if (!SafeMultiplyUint32(temp, samples, &temp)) {
170 temp, GLES2Util::RenderbufferBytesPerPixel(impl_format), &temp)) {
173 *size = temp;
/external/chromium_org/third_party/icu/source/common/
H A Dservlk.cpp78 UnicodeString temp(buffer);
79 result.append(temp);
150 UnicodeString temp(id);
151 parseSuffix(temp);
152 return temp.indexOf(_primaryID) == 0 &&
153 (temp.length() == _primaryID.length() ||
154 temp.charAt(_primaryID.length()) == UNDERSCORE_CHAR);
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
H A Dgen_scalers.c227 int temp; local
233 temp = 8;
234 temp += source[i - (int)src_pitch] * 3;
235 temp += source[i] * 10;
236 temp += source[i + src_pitch] * 3;
237 temp >>= 4;
238 dest[i] = (unsigned char)(temp);
/external/icu/icu4c/source/common/
H A Dservlk.cpp78 UnicodeString temp(buffer);
79 result.append(temp);
150 UnicodeString temp(id);
151 parseSuffix(temp);
152 return temp.indexOf(_primaryID) == 0 &&
153 (temp.length() == _primaryID.length() ||
154 temp.charAt(_primaryID.length()) == UNDERSCORE_CHAR);
/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/vpx_scale/generic/
H A Dgen_scalers.c227 int temp; local
233 temp = 8;
234 temp += source[i - (int)src_pitch] * 3;
235 temp += source[i] * 10;
236 temp += source[i + src_pitch] * 3;
237 temp >>= 4;
238 dest[i] = (unsigned char)(temp);
/external/oprofile/libregex/
H A Ddemangle_java_symbol.cpp132 string temp; local
133 if (!field_type(temp, begin, end))
135 result = temp + " " + result;
196 string temp = string(begin + 1, pos);
197 replace(temp.begin(), temp.end(), '/', '.');
198 result += temp;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java376 byte[][] temp = extractIPsAndSubnetMasks(ipWithSubmask1, ipWithSubmask2);
377 byte ip1[] = temp[0];
378 byte subnetmask1[] = temp[1];
379 byte ip2[] = temp[2];
380 byte subnetmask2[] = temp[3];
409 byte[] temp = new byte[ipLength * 2];
410 System.arraycopy(ip, 0, temp, 0, ipLength);
411 System.arraycopy(subnetMask, 0, temp, ipLength, ipLength);
412 return temp;
1709 byte[] temp
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DHalAdaptation.cpp89 char temp[120]; local
130 if ( GetStrValue ( NAME_UART_PARITY, temp, sizeof ( temp ) ) )
132 if ( strcmp ( temp, "even" ) == 0 )
134 else if ( strcmp ( temp, "odd" ) == 0 )
136 else if ( strcmp ( temp, "none" ) == 0 )
142 if ( GetStrValue ( NAME_UART_STOPBITS, temp, sizeof ( temp ) ) )
144 if ( strcmp ( temp, "1" ) == 0 )
146 else if ( strcmp ( temp, "
[all...]
/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h458 ColSpMatrix temp; local
459 grabMatrix(matrix, temp);
460 Base::compute(temp);
470 ColSpMatrix temp; local
471 grabMatrix(matrix, temp);
472 Base::analyzePattern(temp);
482 ColSpMatrix temp; local
483 grabMatrix(matrix, temp);
484 Base::factorize(temp);
566 ColSpMatrix temp; local
577 ColSpMatrix temp; local
586 ColSpMatrix temp; local
647 ColSpMatrix temp; local
658 ColSpMatrix temp; local
667 ColSpMatrix temp; local
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite_inl.h57 uint32 temp; local
58 if (!input->ReadVarint32(&temp)) return false;
59 *value = static_cast<int32>(temp);
66 uint64 temp; local
67 if (!input->ReadVarint64(&temp)) return false;
68 *value = static_cast<int64>(temp);
87 uint32 temp; local
88 if (!input->ReadVarint32(&temp)) return false;
89 *value = ZigZagDecode32(temp);
96 uint64 temp; local
117 uint32 temp; local
126 uint64 temp; local
135 uint32 temp; local
144 uint64 temp; local
153 uint32 temp; local
162 uint32 temp; local
187 uint32 temp; local
197 uint64 temp; local
207 uint32 temp; local
217 uint64 temp; local
[all...]
/external/protobuf/src/google/protobuf/
H A Dwire_format_lite_inl.h58 uint32 temp; local
59 if (!input->ReadVarint32(&temp)) return false;
60 *value = static_cast<int32>(temp);
67 uint64 temp; local
68 if (!input->ReadVarint64(&temp)) return false;
69 *value = static_cast<int64>(temp);
88 uint32 temp; local
89 if (!input->ReadVarint32(&temp)) return false;
90 *value = ZigZagDecode32(temp);
97 uint64 temp; local
118 uint32 temp; local
127 uint64 temp; local
136 uint32 temp; local
145 uint64 temp; local
154 uint32 temp; local
163 uint32 temp; local
188 uint32 temp; local
198 uint64 temp; local
208 uint32 temp; local
218 uint64 temp; local
[all...]
/external/sonivox/arm-wt-22k/misc/
H A Deas_host.c309 EAS_I32 temp; local
327 temp = file->bytesInBuffer - file->readIndex;
328 if (temp > bytesLeft)
329 temp = bytesLeft;
332 EAS_HWMemCpy(p, &file->buffer[file->readIndex], temp);
333 *pBytesRead += temp;
334 file->readIndex += temp;
335 file->filePos += temp;
336 bytesLeft -= temp;
337 p += temp;
552 EAS_I32 temp; local
[all...]
/external/chromium_org/extensions/common/
H A Dextension_resource_unittest.cc49 base::ScopedTempDir temp; local
50 ASSERT_TRUE(temp.CreateUniqueTempDir());
52 base::FilePath inner_dir = temp.path().AppendASCII("directory");
57 base::FilePath outer_file = temp.path().AppendASCII("outer");
119 base::ScopedTempDir temp; local
120 ASSERT_TRUE(temp.CreateUniqueTempDir());
124 base::FilePath root_resource = temp.path().AppendASCII(filename);
130 temp.path().Append(kLocaleFolder);
147 ExtensionResource resource(extension_id, temp.path(),
158 EXPECT_EQ(ToLower(temp
[all...]
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
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/srec/portable/src/
H A DLCHAR.c133 unsigned int temp; local
163 CHK(rc, lstrtoui(text, &temp, 10));
164 *result = (temp != 0);
173 LCHAR temp; local
185 temp = *end;
190 *end = temp;
194 *end = temp;
268 LCHAR temp; /* temp char */ local
302 temp
[all...]
/external/jpeg/
H A Djchuff.c356 register int temp, temp2; local
362 temp = temp2 = block[0] - last_dc_val;
364 if (temp < 0) {
365 temp = -temp; /* temp is abs value of input */
373 while (temp) {
375 temp >>= 1;
398 if ((temp = block[jpeg_natural_order[k]]) == 0) {
408 temp2 = temp;
575 register int temp; local
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jchuff.c360 register int temp, temp2; local
366 temp = temp2 = block[0] - last_dc_val;
368 if (temp < 0) {
369 temp = -temp; /* temp is abs value of input */
377 while (temp) {
379 temp >>= 1;
402 if ((temp = block[jpeg_natural_order[k]]) == 0) {
412 temp2 = temp;
579 register int temp; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djchuff.c356 register int temp, temp2; local
362 temp = temp2 = block[0] - last_dc_val;
364 if (temp < 0) {
365 temp = -temp; /* temp is abs value of input */
373 while (temp) {
375 temp >>= 1;
398 if ((temp = block[jpeg_natural_order[k]]) == 0) {
408 temp2 = temp;
575 register int temp; local
[all...]
/external/chromium_org/v8/src/compiler/arm64/
H A Dcode-generator-arm64.cc153 Register temp = scope.AcquireX(); local
154 __ Ldr(temp, FieldMemOperand(func, JSFunction::kContextOffset));
155 __ cmp(cp, temp);
212 Register temp = scope.AcquireX(); local
213 __ Sdiv(temp, i.InputRegister(0), i.InputRegister(1));
214 __ Msub(i.OutputRegister(), temp, i.InputRegister(1), i.InputRegister(0));
219 Register temp = scope.AcquireW(); local
220 __ Sdiv(temp, i.InputRegister32(0), i.InputRegister32(1));
221 __ Msub(i.OutputRegister32(), temp, i.InputRegister32(1),
227 Register temp local
234 Register temp = scope.AcquireW(); local
453 Register temp = no_reg; local
740 Register temp = scope.AcquireX(); local
765 FPRegister temp = scope.AcquireD(); local
785 FPRegister temp = scope.AcquireD(); local
803 Register temp = scope.AcquireX(); local
829 FPRegister temp = scope.AcquireD(); local
[all...]
/external/chromium_org/third_party/libvpx/source/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 ;
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dutility.cc144 int32_t temp = 0; local
146 temp = ((source[i * 2] + source[i * 2 + 1]) >> 1) + target[i];
147 target[i] = WebRtcSpl_SatW32ToW16(temp);
150 int32_t temp = 0; local
152 temp = source[i] + target[i];
153 target[i] = WebRtcSpl_SatW32ToW16(temp);

Completed in 1126 milliseconds

<<11121314151617181920>>