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

<<21222324252627282930>>

  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 508 LOperand* temp) {
511 temps_[0] = temp;
516 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
633 LModI(LOperand* left, LOperand* right, LOperand* temp) {
636 temps_[0] = temp;
641 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
693 LDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) {
696 temps_[0] = temp;
701 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
757 LFlooringDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) {
765 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
782 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
852 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
956 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
997 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1029 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1069 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1087 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1226 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1265 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1470 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1553 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1779 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1793 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1807 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1823 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1854 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1884 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1925 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
1980 LOperand* temp() { return temps_[1]; } function in class:v8::internal::final
2006 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
2124 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
2217 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
2231 LOperand* temp() { return temps_[0]; } function in class:v8::internal::final
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
vpx_scaled_convolve8_neon.c 26 DECLARE_ALIGNED(16, uint8_t, temp[4 * 4]);
66 vst1_lane_u32((uint32_t *)&temp[4 * z], vreinterpret_u32_u8(d), 0);
70 temp[z * 4 + i] = src_x[i * src_stride + 3];
78 const uint8x8x4_t d4 = vld4_u8(temp);
101 DECLARE_ALIGNED(16, uint8_t, temp[8 * 8]);
126 vst1_u8(&temp[8 * z], d[0]);
130 temp[z * 8 + i] = src_x[i * src_stride + 3];
137 load_u8_8x8(temp, 8, &d[0], &d[1], &d[2], &d[3], &d[4], &d[5], &d[6],
279 // Note: Fixed size intermediate buffer, temp, places limits on parameters.
281 // (1) Interpolate horizontally into an intermediate buffer, temp
    [all...]
  /external/lzma/C/Util/SfxSetup/
SfxSetup.c 350 errorMessage = "Can't create temp folder";
402 WCHAR *temp; local
410 temp = path + pathLen;
412 SzArEx_GetFileNameUtf16(&db, i, temp);
426 for (j = 0; temp[j] != 0; j++)
428 if (temp[j] == '/')
430 temp[j] = 0;
432 temp[j] = CHAR_PATH_SEPARATOR;
445 const WCHAR *name = temp + nameStartPos;
447 unsigned nameLen = FindExt(temp + nameStartPos, &extLen);
517 WCHAR *temp = path + pathLen; local
    [all...]
  /external/opencv/cv/src/
cvthresh.cpp 135 int temp = isrc[j]; local
136 idst[j] = ((CV_TOGGLE_FLT(temp) <= iThresh) - 1) & iMax;
146 int temp = isrc[j]; local
147 idst[j] = ((CV_TOGGLE_FLT(temp) > iThresh) - 1) & iMax;
157 float temp = src[j]; local
159 if( temp > thresh )
160 temp = thresh;
161 dst[j] = temp;
171 int temp = isrc[j]; local
172 idst[j] = ((CV_TOGGLE_FLT( temp ) <= iThresh) - 1) & temp
182 int temp = isrc[j]; local
    [all...]
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
VrTemperatureTest.java 35 private void checkDeviceTemp(float temp, float throttlingTemp, float shutdownTemp,
45 assertTrue(temp > shutdownTemp
46 || temp == HardwarePropertiesManager.UNDEFINED_TEMPERATURE);
52 assertTrue(temp < shutdownTemp
53 || temp == HardwarePropertiesManager.UNDEFINED_TEMPERATURE);
  /developers/build/
github.sh 42 --keep-temp-files
54 if [ -d "../github-temp$folderPS" ]; then
56 rm -rf ./github-temp$folderPS
57 elif [ -d "github-temp$folderPS" ]; then
58 rm -rf ./github-temp$folderPS
89 --keep-temp-files) deleteTemp=false;;
174 mkdir github-temp$folderPS
175 cd github-temp$folderPS
192 Leaving temp files in place for further examination."
301 Leaving temp files in place for further examination.
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 272 static void _compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp);
294 void HessenbergDecomposition<MatrixType>::_compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp)
298 temp.resize(n);
314 .applyHouseholderOnTheLeft(matA.col(i).tail(remainingSize-1), h, &temp.coeffRef(0));
318 .applyHouseholderOnTheRight(matA.col(i).tail(remainingSize-1).conjugate(), numext::conj(h), &temp.coeffRef(0));
  /external/libcups/cups/
ipp-support.c 624 temp[256]; /* Temporary string */ local
669 bufptr += snprintf(temp, sizeof(temp), "%d", val->integer);
683 bufptr += snprintf(temp, sizeof(temp), "%d-%d", val->range.lower, val->range.upper);
692 bufptr += snprintf(temp, sizeof(temp), "%d%s", val->resolution.xres, val->resolution.units == IPP_RES_PER_INCH ? "dpi" : "dpcm");
697 bufptr += snprintf(temp, sizeof(temp), "%dx%d%s", val->resolution.xres, val->resolution.yres, val->resolution.units == IPP_RES_PER_INCH ? "dpi" : "dpcm");
707 snprintf(temp, sizeof(temp), "%04u-%02u-%02uT%02u:%02u:%02uZ"
2320 temp[256]; \/* Temporary string *\/ local
    [all...]
  /external/mesa3d/src/compiler/glsl/
lower_vector.cpp 140 ir_variable *const temp = local
143 this->base_ir->insert_before(temp);
192 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp);
205 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp);
215 *rvalue = new(mem_ctx) ir_dereference_variable(temp);
  /external/skia/src/xml/
SkXMLParser.cpp 38 SkString temp; local
41 temp.set(gErrorStrings[fCode - 1]);
42 temp.append(fNoun);
44 SkXMLParser::GetNativeErrorString(fNativeCode, &temp);
45 str->append(temp);
  /external/skqp/src/xml/
SkXMLParser.cpp 38 SkString temp; local
41 temp.set(gErrorStrings[fCode - 1]);
42 temp.append(fNoun);
44 SkXMLParser::GetNativeErrorString(fNativeCode, &temp);
45 str->append(temp);
  /frameworks/base/core/java/android/os/storage/
DiskInfo.java 164 final Parcel temp = Parcel.obtain(); local
166 writeToParcel(temp, 0);
167 temp.setDataPosition(0);
168 return CREATOR.createFromParcel(temp);
170 temp.recycle();
VolumeRecord.java 106 final Parcel temp = Parcel.obtain(); local
108 writeToParcel(temp, 0);
109 temp.setDataPosition(0);
110 return CREATOR.createFromParcel(temp);
112 temp.recycle();
  /frameworks/base/core/java/com/android/internal/os/
MobileRadioPowerCalculator.java 53 double temp = local
55 if (temp != -1) {
56 mPowerRadioOn = temp;
66 temp = profile.getAveragePowerOrDefault(PowerProfile.POWER_RADIO_ON, -1);
67 if (temp != -1 ) {
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalUtils.java 122 public static int calculateThermalState(int temp, Integer thresholds[]) {
125 if (temp < thresholds[0])
128 if (temp >= thresholds[thresholds.length - 2])
132 if (temp >= thresholds[i] && temp < thresholds[i + 1]) {
158 Log.i(TAG, "TjMax temp read failed, Default TjMax value =" +
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_framestitching.cpp 87 double *temp,*temp_p; local
104 temp= *X++;
106 r[0]=(*temp++)-c[0];
107 r[1]=(*temp++)-c[1];
108 r[2]=(*temp++)-c[2];
db_utilities_linalg.h 152 double temp; local
153 temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp;
154 temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp
164 double temp; local
214 double temp; local
224 double temp; local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
nlm32-ppc.c 544 bfd_byte temp[4];
548 if (bfd_bread (temp, (bfd_size_type) sizeof (temp), abfd) != sizeof (temp))
551 val = bfd_get_32 (abfd, temp);
617 bfd_byte temp[NLM_TARGET_LONG_SIZE]; /* Temporary 32-bit value. */
635 if (bfd_bread (temp, (bfd_size_type) sizeof (temp), abfd)
636 != sizeof (temp))
638 rcount = H_GET_32 (abfd, temp);
543 bfd_byte temp[4]; local
616 bfd_byte temp[NLM_TARGET_LONG_SIZE]; \/* Temporary 32-bit value. *\/ local
665 bfd_byte temp[4]; local
850 unsigned char temp[NLM_TARGET_LONG_SIZE]; local
    [all...]
  /external/libpcap/
pcap-new.c 92 struct addrinfo hints; /* temp variable needed to resolve hostnames into to socket representation */
93 struct addrinfo *addrinfo; /* temp variable needed to resolve hostnames into to socket representation */
95 int i, j; /* temp variables */
96 int naddr; /* temp var needed to avoid problems with IPv6 addresses */
97 struct pcap_addr *addr; /* another such temp */
1009 struct activehosts *temp, *prev; /* temp var needed to scan he host list chain */ local
1094 temp = activeHosts;
1097 while (temp)
1100 if (sock_cmpaddr(&temp->host, &from) == 0
1136 struct activehosts *temp, *prev; \/* temp var needed to scan the host list chain *\/ local
1225 struct activehosts *temp; \/* temp var needed to scan the host list chain *\/ local
    [all...]
  /hardware/intel/common/wrs_omxil_core/base/src/
portbase.cpp 92 struct list *entry, *temp; local
95 list_foreach_safe(buffer_hdrs, entry, temp) {
187 OMX_PARAM_PORTDEFINITIONTYPE temp; local
189 memcpy(&temp, &portdefinition, sizeof(temp));
192 if (temp.nPortIndex != p->nPortIndex)
194 if (temp.eDir != p->eDir)
196 if (temp.eDomain != p->eDomain)
198 if (temp.nBufferCountActual != p->nBufferCountActual) {
199 if (temp.nBufferCountMin > p->nBufferCountActual
    [all...]
  /external/libxaac/decoder/
ixheaacd_basic_ops16.h 84 WORD32 temp; local
86 temp = ((WORD32)(((WORD32)op1 * (WORD32)op2) >> 15));
87 var_out = ixheaacd_sat16(temp);
100 WORD32 temp; local
105 temp = (WORD32)(op1 << shift);
106 var_out = ixheaacd_sat16(temp);
317 WORD32 temp; local
319 temp = ((WORD32)op1 * (WORD32)op2) >> 15;
320 temp += c;
321 var_out = ixheaacd_sat16(temp);
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 141 int temp = CrcTable[_bufferBase[cur] & 0xFF] ^ (_bufferBase[cur + 1] & 0xFF); local
142 hash2Value = temp & (kHash2Size - 1);
143 temp ^= ((int)(_bufferBase[cur + 2] & 0xFF) << 8);
144 hash3Value = temp & (kHash3Size - 1);
145 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask;
276 int temp = CrcTable[_bufferBase[cur] & 0xFF] ^ (_bufferBase[cur + 1] & 0xFF); local
277 int hash2Value = temp & (kHash2Size - 1);
279 temp ^= ((int)(_bufferBase[cur + 2] & 0xFF) << 8);
280 int hash3Value = temp & (kHash3Size - 1);
282 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask;
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_nir_lower_io.c 100 nir_ssa_def *temp; local
120 temp = nir_ixor(b, vpm, nir_imm_int(b, 0x80808080));
123 vc4_nir_unpack_8f(b, temp, swiz),
129 vc4_nir_unpack_8i(b, temp,
149 temp = nir_i2f(b, vc4_nir_unpack_16i(b, vpm, swiz & 1));
151 return nir_fmul(b, temp,
154 return temp;
157 temp = nir_i2f(b, vc4_nir_unpack_16u(b, vpm, swiz & 1));
159 return nir_fmul(b, temp,
162 return temp;
    [all...]
  /external/tensorflow/tensorflow/python/
pywrap_tfe.i 129 %typemap(in) TFE_InputTensorHandles* inputs (TFE_InputTensorHandles temp) {
130 $1 = &temp;
155 %typemap(in) TFE_OutputTensorHandles* outputs (TFE_OutputTensorHandles temp) {
161 $1 = &temp;
204 %typemap(in) TFE_OutputTensorHandles* outputs (TFE_OutputTensorHandles temp);
  /frameworks/base/obex/javax/obex/
HeaderSet.java 293 long temp = -1; local
304 temp = ((Long)headerValue).longValue();
305 if ((temp < 0L) || (temp > 0xFFFFFFFFL)) {
331 temp = ((Long)headerValue).longValue();
332 if ((temp < 0L) || (temp > 0xFFFFFFFFL)) {
487 temp = ((Long)headerValue).longValue();
488 if ((temp < 0L) || (temp > 0xFFFFFFFFL))
    [all...]

Completed in 2218 milliseconds

<<21222324252627282930>>