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

<<21222324252627282930>>

  /external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
matrix.cc 22 float temp, temp2, temp3, temp4; local
23 temp = 2.0f * znear;
27 mat[0] = temp / temp2;
32 mat[5] = temp / temp3;
41 mat[14] = (-temp * zfar) / temp4;
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
matrix.cc 22 float temp, temp2, temp3, temp4; local
23 temp = 2.0f * znear;
27 mat[0] = temp / temp2;
32 mat[5] = temp / temp3;
41 mat[14] = (-temp * zfar) / temp4;
  /external/chromium_org/third_party/WebKit/Source/wtf/
CheckedArithmetic.h 249 ResultType temp = lhs - std::numeric_limits<ResultType>::min(); variable
250 if (rhs < -temp)
306 ResultType temp = lhs + rhs; variable
307 if (temp < lhs)
309 result = temp;
315 ResultType temp = lhs - rhs; variable
316 if (temp > lhs)
318 result = temp;
341 int64_t temp = lhs + rhs; local
342 if (temp < std::numeric_limits<ResultType>::min()
352 int64_t temp = lhs - rhs; local
363 int64_t temp = lhs * rhs; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
nfsubs.cpp 554 UnicodeString temp; local
556 ruleSet->getName(temp);
558 numberFormat->toPattern(temp);
560 text.append(temp);
596 UnicodeString temp; local
597 numberFormat->format(numberToFormat, temp);
598 toInsertInto.insert(_pos + this->pos, temp);
630 UnicodeString temp; local
631 numberFormat->format(numberToFormat, temp);
632 toInsertInto.insert(_pos + this->pos, temp);
1120 Formattable temp; local
1217 UnicodeString temp; local
1244 Formattable temp; local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
wrtxml.cpp 225 char* temp=NULL; local
333 temp = (char*) uprv_malloc(sizeof(char)*destCap);
334 if(temp==NULL){
339 uprv_memmove(temp,dest,destLen);
342 dest=temp;
343 temp=NULL;
853 char temp[256] = {0}; local
869 len = itostr(temp, res->u.fBinaryValue.fData[i], 16, 2);
870 crc = computeCRC(temp, len, crc);
874 len = itostr(temp, crc, 10, 0)
1016 char* temp = NULL; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_instructions.cpp 239 ir_variable *temp = new(ir) ir_variable(ir->operands[1]->type, "mod_b", local
241 this->base_ir->insert_before(temp);
244 new(ir) ir_assignment(new(ir) ir_dereference_variable(temp),
252 new(ir) ir_dereference_variable(temp));
266 ir->operands[0] = new(ir) ir_dereference_variable(temp);
  /external/icu4c/i18n/
nfsubs.cpp 580 UnicodeString temp; local
582 ruleSet->getName(temp);
584 numberFormat->toPattern(temp);
586 text.append(temp);
622 UnicodeString temp; local
623 numberFormat->format(numberToFormat, temp);
624 toInsertInto.insert(_pos + this->pos, temp);
656 UnicodeString temp; local
657 numberFormat->format(numberToFormat, temp);
658 toInsertInto.insert(_pos + this->pos, temp);
1167 Formattable temp; local
1264 UnicodeString temp; local
1291 Formattable temp; local
    [all...]
  /external/icu4c/tools/genrb/
wrtxml.cpp 227 char* temp=NULL; local
335 temp = (char*) uprv_malloc(sizeof(char)*destCap);
336 if(temp==NULL){
341 uprv_memmove(temp,dest,destLen);
344 dest=temp;
345 temp=NULL;
853 char temp[256] = {0}; local
869 len = itostr(temp, res->u.fBinaryValue.fData[i], 16, 2);
870 crc = computeCRC(temp, len, crc);
874 len = itostr(temp, crc, 10, 0)
1015 char* temp = NULL; local
    [all...]
  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 141 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
142 hash2Value = temp & (kHash2Size - 1);
143 temp ^= ((UInt32)(_bufferBase[cur + 2]) << 8);
144 hash3Value = temp & (kHash3Size - 1);
145 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
276 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
277 UInt32 hash2Value = temp & (kHash2Size - 1);
279 temp ^= ((UInt32)(_bufferBase[cur + 2]) << 8);
280 UInt32 hash3Value = temp & (kHash3Size - 1);
282 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
    [all...]
  /external/mesa3d/src/glsl/
lower_instructions.cpp 239 ir_variable *temp = new(ir) ir_variable(ir->operands[1]->type, "mod_b", local
241 this->base_ir->insert_before(temp);
244 new(ir) ir_assignment(new(ir) ir_dereference_variable(temp),
252 new(ir) ir_dereference_variable(temp));
266 ir->operands[0] = new(ir) ir_dereference_variable(temp);
  /external/opencv/cv/src/
cvemd.cpp 777 float temp = loop[i]->val; local
779 if( min_val > temp )
782 min_val = temp;
945 float temp = cost_row[j]; local
947 if( u_val < temp )
948 u_val = temp;
949 if( v[j].val < temp )
950 v[j].val = temp;
1017 float temp = cost[cur_u - u][j]; local
1019 if( max_val < temp )
1046 float temp = cost[i][cur_v - v]; local
1078 float temp; local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
TestHttpResponse.java 96 List<Header> temp = new ArrayList<Header>(); local
97 Collections.addAll(temp, headers);
98 temp.add(header);
99 headers = temp.toArray(new Header[temp.size()]);
  /external/sonivox/arm-fm-22k/host_src/
eas_main.c 224 int temp; local
241 temp = argv[i][2];
242 if ((temp >= '0') || (temp <= '9'))
243 EAS_SetDebugLevel(temp);
245 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_WARNING, "Invalid debug level %d\n", temp); */ }
  /external/sonivox/arm-hybrid-22k/host_src/
eas_main.c 224 int temp; local
241 temp = argv[i][2];
242 if ((temp >= '0') || (temp <= '9'))
243 EAS_SetDebugLevel(temp);
245 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_WARNING, "Invalid debug level %d\n", temp); */ }
  /external/sonivox/arm-wt-22k/host_src/
eas_main.c 227 int temp; local
244 temp = argv[i][2];
245 if ((temp >= '0') || (temp <= '9'))
246 EAS_SetDebugLevel(temp);
248 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_WARNING, "Invalid debug level %d\n", temp); */ }
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c2_9pf.cpp 325 Word16 temp; local
345 temp =
354 temp,
407 temp =
416 temp,
    [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 231 unsigned temp; local
355 if (line[0] == 'S' && sscanf(line, "Size: %d kB", &temp) == 1) {
356 size = temp;
357 } else if (line[0] == 'R' && sscanf(line, "Rss: %d kB", &temp) == 1) {
358 resident = temp;
359 } else if (line[0] == 'P' && sscanf(line, "Pss: %d kB", &temp) == 1) {
360 pss = temp;
361 } else if (line[0] == 'S' && sscanf(line, "Shared_Clean: %d kB", &temp) == 1) {
362 shared_clean = temp;
363 } else if (line[0] == 'S' && sscanf(line, "Shared_Dirty: %d kB", &temp) == 1)
494 unsigned temp; local
    [all...]
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestActivity.java 92 Map<String, Object> temp = new HashMap<String, Object>(); local
93 temp.put(KEY_TITLE, name);
94 temp.put(KEY_CLASS, clazz);
95 temp.put(KEY_FRAGMENT_ID, fragmentId);
96 data.add(temp);
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 910 int temp = scratches.obtain(); local
1009 int temp = scratches.obtain(); local
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cffobjs.c 644 FT_Fixed temp = FT_ABS( matrix->yy ); local
647 if ( temp != 0x10000L )
649 *upm = FT_DivFix( *upm, temp );
651 matrix->xx = FT_DivFix( matrix->xx, temp );
652 matrix->yx = FT_DivFix( matrix->yx, temp );
653 matrix->xy = FT_DivFix( matrix->xy, temp );
654 matrix->yy = FT_DivFix( matrix->yy, temp );
655 offset->x = FT_DivFix( offset->x, temp );
656 offset->y = FT_DivFix( offset->y, temp );
671 FT_Fixed temp; local
    [all...]
  /external/freetype/src/cff/
cffobjs.c 644 FT_Fixed temp = FT_ABS( matrix->yy ); local
647 if ( temp != 0x10000L )
649 *upm = FT_DivFix( *upm, temp );
651 matrix->xx = FT_DivFix( matrix->xx, temp );
652 matrix->yx = FT_DivFix( matrix->yx, temp );
653 matrix->xy = FT_DivFix( matrix->xy, temp );
654 matrix->yy = FT_DivFix( matrix->yy, temp );
655 offset->x = FT_DivFix( offset->x, temp );
656 offset->y = FT_DivFix( offset->y, temp );
671 FT_Fixed temp; local
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 164 WebRtc_Word32 temp; local
473 temp = -bweStr->recJitterShortTerm;
474 temp = WEBRTC_SPL_RSHIFT_W32(temp, 12);
475 bweStr->recJitterShortTerm = -temp;
722 WebRtc_Word32 temp; local
732 temp = -jitter_sign;
733 temp = WEBRTC_SPL_RSHIFT_W32(temp, 19);
734 jitter_sign = -temp;
    [all...]
  /bootable/recovery/
install.cpp 115 char* temp = (char*)malloc(10); local
116 sprintf(temp, "%d", pipefd[1]);
117 args[2] = temp;
  /external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java 121 File temp = new File(resources.toString() + "/local.tmp"); local
122 copyLocalFileTo(temp, in);
123 return temp;
  /external/bluetooth/bluedroid/stack/avrc/
avrc_sdp.c 217 UINT8 temp[8]; local
257 p = temp;
260 (UINT32)2, (UINT8*)temp);

Completed in 905 milliseconds

<<21222324252627282930>>