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

123456789

/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/tools/permute/
H A Dpermute.c234 Segment temp = s.mSegmentArray[i]; local
236 s.mSegmentArray[j] = temp;
/frameworks/support/renderscript/v8/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/support/renderscript/v8/rs_support/
H A DrsComponent.cpp256 uint8_t temp = stream->loadU8(); local
257 mNormalized = temp != 0;
H A DrsMatrix2x2.cpp59 float temp = m[1]; local
61 m[2] = temp;
H A DrsMatrix3x3.cpp67 float temp; local
70 temp = get(i, j);
72 set(j, i, temp);
H A DrsMatrix4x4.cpp121 float temp; local
124 temp = m[i*4 + j];
126 m[j*4 + i] = temp;
/frameworks/rs/
H A DrsComponent.cpp256 uint8_t temp = stream->loadU8(); local
257 mNormalized = temp != 0;
H A DrsMatrix2x2.cpp59 float temp = m[1]; local
61 m[2] = temp;
H A DrsMatrix3x3.cpp67 float temp; local
70 temp = get(i, j);
72 set(j, i, temp);
H A DrsMatrix4x4.cpp121 float temp; local
124 temp = m[i*4 + j];
126 m[j*4 + i] = temp;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DBerTlv.java77 int temp = data[curIndex++] & 0xff;
78 if (temp < 0x80) {
79 length = temp;
80 } else if (temp == 0x81) {
81 temp = data[curIndex++] & 0xff;
82 if (temp < 0x80) {
89 length = temp;
94 " byte= " + Integer.toHexString(temp) + " curIndex=" + curIndex +
H A DComprehensionTlv.java123 int temp = data[curIndex++] & 0xff;
124 switch (temp) {
128 Log.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/android/internal/telephony/cdma/
H A DCdmaDataConnectionTracker.java127 ArrayList<String> temp = new ArrayList<String>();
130 temp.add(t[i]);
133 temp.add(0,PhoneConstants.APN_TYPE_DUN);
134 mDunApnTypes = temp.toArray(t);
/frameworks/opt/mms/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/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2366 for (final RecipientChip temp : originalRecipients) {
2368 if (RecipientEntry.isCreatedRecipient(temp.getEntry().getContactId())
2369 && getSpannable().getSpanStart(temp) != -1) {
2371 entry = createValidatedEntry(entries.get(tokenizeAddress(temp.getEntry()
2377 replacements.add(temp);
2434 for (final RecipientChip temp : originalRecipients) {
2435 if (RecipientEntry.isCreatedRecipient(temp.getEntry().getContactId())
2436 && getSpannable().getSpanStart(temp) != -1) {
2439 temp.getEntry().getDestination()).toLowerCase()));
2443 entry = 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...]
/frameworks/native/libs/gui/
H A DSurface.cpp355 ARect temp; local
358 temp = inOutDirtyRegion->getBounds();
359 inOutDirtyBounds = &temp;
374 inOutDirtyRegion->set( static_cast<Rect const&>(temp) );
/frameworks/native/libs/utils/
H A DThreads.cpp78 int temp; local
79 if (sscanf(buf, "%d", &temp) == 1) {
80 gDoSchedulingGroup = temp == 0;
H A DVectorImpl.cpp173 void* temp = 0; local
180 if (!temp) {
184 temp = malloc(mItemSize);
185 if (!temp) return NO_MEMORY;
189 _do_destroy(temp, 1);
192 _do_copy(temp, item, 1);
202 } while (j>=0 && (cmp(curr, temp, state) > 0));
205 _do_copy(next, temp, 1);
210 if (temp) {
211 _do_destroy(temp,
[all...]

Completed in 1882 milliseconds

123456789