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

123456789

/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/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/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/support/v17/leanback/
H A DAndroid.mk160 # Cleanup temp vars
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionInfoUpdater.java512 SubscriptionInfo temp = subInfos.get(i);
515 temp.getSubscriptionId());
522 + Integer.toString(temp.getSubscriptionId()), 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.java969 int temp = pduDataStream.read();
970 if (temp == -1) {
971 return temp;
974 while((temp & 0x80) != 0) {
976 result |= temp & 0x7F;
977 temp = pduDataStream.read();
978 if (temp == -1) {
979 return temp;
984 result |= temp & 0x7F;
1005 int temp
[all...]
/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) {
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2706 for (final DrawableRecipientChip temp : recipients) {
2708 if (temp != null && RecipientEntry.isCreatedRecipient(
2709 temp.getEntry().getContactId())
2710 && getSpannable().getSpanStart(temp) != -1) {
2713 entries.get(tokenizeAddress(temp.getEntry()
2730 for (final DrawableRecipientChip temp : recipients) {
2731 if (temp != null && RecipientEntry.isCreatedRecipient(
2732 temp.getEntry().getContactId())
2733 && getSpannable().getSpanStart(temp) != -1) {
2735 temp
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DLearning_StochasticLinearRanker.java76 ArrayList<StringFloat> temp = (ArrayList<StringFloat>)sample;
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;
91 for (int i = 0; i < temp.size(); i++)
92 weights.put(temp.get(i).key, temp
[all...]

Completed in 471 milliseconds

123456789