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

<<11121314151617181920>>

  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
queue.c 101 Node *temp; local
107 temp = q->head;
108 element = temp->element;
116 free(temp);
  /sdk/emulator/opengl/tests/event_injector/
emulator-console.c 86 char temp[64]; local
87 int ret = socket_recv(con->fd, temp, sizeof temp);
97 DD("Console received: '%.*s'", ret, temp);
307 char temp[128]; local
310 snprintf(temp, sizeof temp,
313 emulatorConsole_send(con, temp);
326 char temp[128]; local
329 snprintf(temp, sizeof temp
340 char temp[128]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_output_reads.cpp 92 ir_variable *temp = (ir_variable *) hash_table_find(replacements, ir->var);
95 if (temp == NULL) {
97 temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
99 hash_table_insert(replacements, temp, ir->var);
103 ir->var = temp;
112 copy(void *ctx, ir_variable *output, ir_variable *temp)
115 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp);
  /external/mesa3d/src/glsl/
lower_output_reads.cpp 92 ir_variable *temp = (ir_variable *) hash_table_find(replacements, ir->var);
95 if (temp == NULL) {
97 temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
99 hash_table_insert(replacements, temp, ir->var);
103 ir->var = temp;
112 copy(void *ctx, ir_variable *output, ir_variable *temp)
115 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp);
  /external/smack/src/org/xbill/DNS/
UDPClient.java 64 InetSocketAddress temp; local
71 temp = new InetSocketAddress(addr.getAddress(),
74 temp = new InetSocketAddress(port);
75 channel.socket().bind(temp);
120 byte [] temp = new byte[max];
130 long ret = channel.read(ByteBuffer.wrap(temp));
135 System.arraycopy(temp, 0, data, 0, len);
  /frameworks/base/location/java/android/location/
Geofence.java 150 long temp; local
151 temp = Double.doubleToLongBits(mLatitude);
152 result = prime * result + (int) (temp ^ (temp >>> 32));
153 temp = Double.doubleToLongBits(mLongitude);
154 result = prime * result + (int) (temp ^ (temp >>> 32));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLocation.java 220 long temp; local
223 temp = latitude != +0.0d ? Double.doubleToLongBits(latitude) : 0L;
224 result = 31 * result + (int) (temp ^ (temp >>> 32));
225 temp = longitude != +0.0d ? Double.doubleToLongBits(longitude) : 0L;
226 result = 31 * result + (int) (temp ^ (temp >>> 32));
227 temp = accuracy != 0f ? Float.floatToIntBits(accuracy) : 0;
228 result = 31 * result + (int) (temp ^ (temp >>> 32))
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Process.c 233 LVM_INT32 temp; local
235 temp = (LVM_INT32)(LVPSA_MAXUNSIGNEDCHAR - pLVPSA_Inst->pPreviousPeaks[ii]);
236 temp = ((temp * LVPSA_MAXLEVELDECAYFACTOR)>>LVPSA_MAXLEVELDECAYSHIFT);
238 if(temp == (LVPSA_MAXUNSIGNEDCHAR - pLVPSA_Inst->pPreviousPeaks[ii]))
240 temp += 1;
243 temp = (temp > LVPSA_MAXUNSIGNEDCHAR) ? LVPSA_MAXUNSIGNEDCHAR : temp;
245 pLVPSA_Inst->pPreviousPeaks[ii] = (LVM_UINT8)(LVPSA_MAXUNSIGNEDCHAR - temp);
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 42 int temp, SBE, offset; local
60 temp = *topL++ - orgY[j];
61 SBE += ((temp >= 0) ? temp : -temp);
62 temp = *(leftL += picPitch) - *(orgY_2 += orgPitch);
63 SBE += ((temp >= 0) ? temp : -temp);
76 temp = *topL++ - orgY_2[j]
728 uint32 temp, DC; local
2012 int component, SubBlock_indx, temp; local
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
Learning_StochasticLinearRanker.java 76 ArrayList<StringFloat> temp = (ArrayList<StringFloat>)sample; local
77 String[] keys = new String[temp.size()];
78 float[] values = new float[temp.size()];
79 for (int i = 0; i < temp.size(); i++){
80 keys[i] = temp.get(i).key;
81 values[i] = temp.get(i).value;
89 ArrayList<StringFloat> temp = (ArrayList<StringFloat>)sample; local
91 for (int i = 0; i < temp.size(); i++)
92 weights.put(temp.get(i).key, temp.get(i).value)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLVertex.java 82 GLVertex temp = new GLVertex(); local
83 transform.multiply(this, temp);
84 vertexBuffer.put(toFixed(temp.x));
85 vertexBuffer.put(toFixed(temp.y));
86 vertexBuffer.put(toFixed(temp.z));
  /external/chromium_org/third_party/skia/src/views/animated/
SkProgressBarView.cpp 68 int32_t temp; local
69 if (dom.findS32(node, "max", &temp))
70 this->setMax(temp);
71 if (dom.findS32(node, "progress", &temp))
72 this->setProgress(temp);
  /external/iproute2/lib/
ll_addr.c 76 int temp; local
82 if (sscanf(arg, "%x", &temp) != 1) {
86 if (temp < 0 || temp > 255) {
90 lladdr[i] = temp;
  /external/skia/src/views/animated/
SkProgressBarView.cpp 68 int32_t temp; local
69 if (dom.findS32(node, "max", &temp))
70 this->setMax(temp);
71 if (dom.findS32(node, "progress", &temp))
72 this->setProgress(temp);
  /frameworks/base/obex/javax/obex/
PrivateOutputStream.java 129 byte[] temp = mArray.toByteArray();
132 System.arraycopy(temp, 0, result, 0, size);
133 if (temp.length != size) {
134 mArray.write(temp, size, temp.length - size);
  /external/qemu/android/
help.c 225 char temp[32], *p = temp, *end = p + sizeof(temp); local
237 len = strlen(temp);
241 PRINTF( " %-*s %s\n", maxw, temp, skin_key_command_description(cmd) );
286 char temp[MAX_PATH]; local
294 bufprint_config_file( temp, temp+sizeof(temp), KEYSET_FILE );
295 PRINTF( " %s\n\n", temp );
1317 char temp[256]; local
1592 char temp[32]; local
1644 char temp[32]; local
    [all...]
  /external/jpeg/
jcphuff.c 318 register int temp, nbits; local
321 temp = entropy->EOBRUN;
323 while ((temp >>= 1))
380 register int temp, temp2; local
408 temp = temp2 - entropy->last_dc_val[ci];
412 temp2 = temp;
413 if (temp < 0) {
414 temp = -temp; /* temp is abs value of input *
467 register int temp, temp2; local
574 register int temp; local
621 register int temp; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jcphuff.c 318 register int temp, nbits; local
321 temp = entropy->EOBRUN;
323 while ((temp >>= 1))
380 register int temp, temp2; local
408 temp = temp2 - entropy->last_dc_val[ci];
412 temp2 = temp;
413 if (temp < 0) {
414 temp = -temp; /* temp is abs value of input *
467 register int temp, temp2; local
574 register int temp; local
621 register int temp; local
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_rtttl.c 265 EAS_I32 temp; local
357 if ((result = RTTTL_GetNumber(pEASData->hwInstData, pData, &temp)) != EAS_SUCCESS)
361 if ((temp >= 4) && (temp <= 7))
363 octave = (EAS_U8) temp;
367 else if ((temp >= 25) && (temp <= 900))
369 pData->tick = TICK_CONVERT / (EAS_U32) temp;
829 EAS_I8 temp; local
838 temp = 64
934 EAS_INT temp; local
981 EAS_I8 temp; local
1127 EAS_I8 temp; local
1173 EAS_I8 temp; local
    [all...]
eas_ota.c 167 EAS_U8 temp; local
171 if ((result = EAS_HWGetByte(pEASData->hwInstData, fileHandle, &temp)) != EAS_SUCCESS)
175 cmdLen = temp;
181 if ((result = EAS_HWGetByte(pEASData->hwInstData, fileHandle, &temp)) != EAS_SUCCESS)
183 temp = temp >> 1;
187 if (temp != OTA_RINGTONE)
194 if (temp == OTA_SOUND)
217 if (temp != OTA_UNICODE)
322 EAS_U8 temp; local
849 EAS_U8 temp; local
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_rtttl.c 265 EAS_I32 temp; local
357 if ((result = RTTTL_GetNumber(pEASData->hwInstData, pData, &temp)) != EAS_SUCCESS)
361 if ((temp >= 4) && (temp <= 7))
363 octave = (EAS_U8) temp;
367 else if ((temp >= 25) && (temp <= 900))
369 pData->tick = TICK_CONVERT / (EAS_U32) temp;
829 EAS_I8 temp; local
838 temp = 64
934 EAS_INT temp; local
981 EAS_I8 temp; local
1127 EAS_I8 temp; local
1173 EAS_I8 temp; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_rtttl.c 265 EAS_I32 temp; local
357 if ((result = RTTTL_GetNumber(pEASData->hwInstData, pData, &temp)) != EAS_SUCCESS)
361 if ((temp >= 4) && (temp <= 7))
363 octave = (EAS_U8) temp;
367 else if ((temp >= 25) && (temp <= 900))
369 pData->tick = TICK_CONVERT / (EAS_U32) temp;
829 EAS_I8 temp; local
838 temp = 64
934 EAS_INT temp; local
981 EAS_I8 temp; local
1127 EAS_I8 temp; local
1173 EAS_I8 temp; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
custrtst.c 108 UChar temp[512]; local
126 temp[0] = 0;
127 temp[7] = 0xA4; /* Mark the end */
128 u_memcpy(temp,dataTable[i][j], 7);
130 if(temp[7] != 0xA4)
132 if(u_memcmp(temp, dataTable[i][j], 7)!=0)
154 temp[7] = 0;
155 u_memcpy(temp,nullTemp, 7);
156 if(u_memcmp(temp, nullTemp, 7)!=0 || temp[7]!=0
972 UChar temp[40]; local
    [all...]
  /external/icu4c/test/cintltst/
custrtst.c 108 UChar temp[512]; local
126 temp[0] = 0;
127 temp[7] = 0xA4; /* Mark the end */
128 u_memcpy(temp,dataTable[i][j], 7);
130 if(temp[7] != 0xA4)
132 if(u_memcmp(temp, dataTable[i][j], 7)!=0)
154 temp[7] = 0;
155 u_memcpy(temp,nullTemp, 7);
156 if(u_memcmp(temp, nullTemp, 7)!=0 || temp[7]!=0
972 UChar temp[40]; local
    [all...]
  /external/qemu/android/utils/
timezone.c 207 char temp[2]; local
210 do { ret = read(fd1, &temp[0], 1); } while (ret < 0 && errno == EINTR);
213 do { ret = read(fd2, &temp[1], 1); } while (ret < 0 && errno == EINTR);
216 if (temp[0] != temp[1])
310 char temp[ PATH_MAX ]; local
346 char *p = temp, *end = p + sizeof(temp);
349 if (p >= end || access( temp, R_OK ) != 0 ) {
351 LOCALTIME_FILE1, temp );
    [all...]

Completed in 7897 milliseconds

<<11121314151617181920>>