Searched refs:temp (Results 1 - 25 of 225) sorted by last modified time

123456789

/frameworks/support/v17/leanback/
H A DAndroid.mk159 # Cleanup temp vars
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix2f.java187 float temp = mMat[1];
189 mMat[2] = temp;
H A DMatrix3f.java311 float temp = mMat[i*3 + j];
313 mMat[j*3 + i] = temp;
H A DMatrix4f.java486 float temp = mMat[i*4 + j];
488 mMat[j*4 + i] = temp;
/frameworks/testing/espresso/espresso-sample/src/main/java/com/google/android/apps/common/testing/ui/testapp/
H A DMainActivity.java99 Map<String, Object> temp = new HashMap<String, Object>();
100 temp.put("title", name);
101 temp.put("intent", intent);
102 data.add(temp);
/frameworks/testing/espresso/libs/
H A Dguava-14.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/frameworks/wilhelm/src/
H A Ddevices.c234 SLmilliHertz *temp = (SLmilliHertz *) malloc(sizeof(SLmilliHertz) *
236 assert(NULL != temp);
237 memcpy(temp, pDescriptor->pSampleRatesSupported, sizeof(SLmilliHertz) *
239 pDescriptor->pSampleRatesSupported = temp;
/frameworks/wilhelm/src/itf/
H A DIPlay.c166 SLmillisecond temp; local
169 result = android_audioPlayer_getDuration(thiz, &temp);
172 result = android_Player_getDuration(thiz, &temp);
179 duration = temp;
/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.c136 void *temp = malloc(READ_FRAMES * sfframesize); local
142 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES);
146 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES);
150 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES);
160 const unsigned char *ptr = (unsigned char *) temp;
178 free(temp);
H A Dplaybq.cpp136 void *temp = malloc(READ_FRAMES * sfframesize); local
142 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES);
146 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES);
150 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES);
160 const unsigned char *ptr = (unsigned char *) temp;
178 free(temp);
/frameworks/wilhelm/tools/permute/
H A Dpermute.c234 Segment temp = s.mSegmentArray[i]; local
236 s.mSegmentArray[j] = temp;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubInfoRecordUpdater.java397 SubInfoRecord temp = subInfos.get(i);
399 String msisdn = TelephonyManager.getDefault().getLine1NumberForSubscriber(temp.subId);
405 SubscriptionManager._ID + "=" + Long.toString(temp.subId), null);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DBerTlv.java89 int temp = data[curIndex++] & 0xff;
90 if (temp < 0x80) {
91 length = temp;
92 } else if (temp == 0x81) {
93 temp = data[curIndex++] & 0xff;
94 if (temp < 0x80) {
101 length = temp;
106 " byte= " + Integer.toHexString(temp) + " curIndex=" + curIndex +
H A DComprehensionTlv.java123 int temp = data[curIndex++] & 0xff;
124 switch (temp) {
128 Rlog.d("CAT ", "decode: unexpected first tag byte=" + Integer.toHexString(temp) +
144 tag = temp;
152 temp = data[curIndex++] & 0xff;
153 if (temp < 0x80) {
154 length = temp;
155 } else if (temp == 0x81) {
164 } else if (temp == 0x82) {
175 } else if (temp
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java213 String[] temp = getString().split(pattern);
214 EncodedStringValue[] ret = new EncodedStringValue[temp.length];
218 temp[i].getBytes());
H A DPduComposer.java258 long temp = longInt;
261 for(size = 0; (temp != 0) && (size < LONG_INTEGER_LENGTH_MAX); size++) {
262 temp = (temp >>> 8);
376 long temp = value >>> (i * 7);
377 temp = temp & 0x7f;
379 append((int)((temp | 0x80) & 0xff));
456 EncodedStringValue temp = null;
460 temp
[all...]
H A DPduParser.java965 int temp = pduDataStream.read();
966 if (temp == -1) {
967 return temp;
970 while((temp & 0x80) != 0) {
972 result |= temp & 0x7F;
973 temp = pduDataStream.read();
974 if (temp == -1) {
975 return temp;
980 result |= temp & 0x7F;
1001 int temp
[all...]
/frameworks/rs/cpp/
H A DScriptIntrinsics.cpp290 float temp[16]; local
291 temp[0] = m[0];
292 temp[1] = m[1];
293 temp[2] = m[2];
294 temp[3] = 0.f;
296 temp[4] = m[3];
297 temp[5] = m[4];
298 temp[6] = m[5];
299 temp[7] = 0.f;
301 temp[
[all...]
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
H A DBenchmark.java36 int[] temp;
37 temp = new int[1];
43 aout.copy1DRangeFrom(0, 1, temp);
54 aout.copy1DRangeFrom(0, 1, temp);
/frameworks/rs/
H A DrsComponent.cpp269 uint8_t temp = stream->loadU8(); local
270 mNormalized = temp != 0;
H A DrsMatrix2x2.cpp47 Matrix2x2 temp; local
56 temp.set(i, 0, ri0);
57 temp.set(i, 1, ri1);
59 load(&temp);
63 float temp = m[1]; local
65 m[2] = temp;
H A DrsMatrix3x3.cpp51 Matrix3x3 temp; local
62 temp.set(i, 0, ri0);
63 temp.set(i, 1, ri1);
64 temp.set(i, 2, ri2);
66 load(&temp);
71 float temp; local
74 temp = get(i, j);
76 set(j, i, temp);
H A DrsMatrix4x4.cpp121 float temp; local
124 temp = m[i*4 + j];
126 m[j*4 + i] = temp;
255 Matrix4x4 temp; local
268 temp.set(i,0, ri0);
269 temp.set(i,1, ri1);
270 temp.set(i,2, ri2);
271 temp.set(i,3, ri3);
273 load(&temp);
/frameworks/rs/tests/latency/
H A Dlatency.cpp35 int temp = atoi(argv[3]); local
36 if (temp != 0)
41 int temp = atoi(argv[4]); local
42 if (temp != 0)
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java2238 for (String temp : mNwService.listTetheredInterfaces()) {
2239 logd("List all interfaces " + temp);
2240 if (temp.compareTo(intf) != 0) {

Completed in 459 milliseconds

123456789