Searched refs:temp (Results 276 - 300 of 1627) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/tools/ipc_fuzzer/mutate/
H A Dmessage_util.cc87 int temp = atoi(cmd->GetSwitchValueASCII(kStartSwitch).c_str()); local
88 if (temp > 0 )
89 start_index = static_cast<size_t>(temp);
94 int temp = atoi(cmd->GetSwitchValueASCII(kEndSwitch).c_str()); local
95 if (temp > 0)
96 end_index = static_cast<size_t>(temp);
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.h31 int temp; local
33 temp = arr[i];
38 arr[j] = temp ;
54 int temp, tempi; local
56 temp = arr[i];
65 arr[j] = temp ;
/external/bluetooth/bluedroid/utils/src/
H A Dbt_utils.c104 int temp; local
105 if (sscanf(buf, "%d", &temp) == 1) {
106 g_DoSchedulingGroup[g_TaskIdx] = temp == 0;
/external/chromium_org/base/win/
H A Dscoped_process_information.cc22 HANDLE temp = NULL;
24 ::GetCurrentProcess(), &temp, 0, FALSE,
29 target->Set(temp);
H A Dscoped_handle.h89 Handle temp = handle_; local
91 if (Traits::IsHandleValid(temp)) {
92 Verifier::StopTracking(temp, this, BASE_WIN_GET_CALLER,
95 return temp;
/external/chromium_org/gpu/command_buffer/service/
H A Dcommon_decoder.h87 size_t temp = offset + size; local
88 return temp <= size_ && temp >= offset;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcg7coll.c193 UChar temp[sizeof(rules)]; local
195 u_uastrcpy(temp, rules);
199 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
224 UChar temp[sizeof(rules)]; local
226 u_uastrcpy(temp, rules);
230 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
253 UChar temp[sizeof(rules)]; local
255 u_uastrcpy(temp, rules);
259 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
283 UChar temp[sizeo local
[all...]
/external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
H A Dutimer.h248 UTimer temp; local
249 utimer_getTime(&temp);
250 return uprv_delta(timer,&temp);
/external/chromium_org/ui/gfx/
H A Dpath_win.cc15 base::win::ScopedRegion temp(::CreateRectRgn(0, 0, 0, 0));
20 ::SetRectRgn(temp, rect.left(), rect.top(), rect.right(), rect.bottom());
21 ::CombineRgn(result, result, temp, RGN_OR);
/external/chromium_org/v8/src/
H A Dsplay-tree-inl.h102 Node* temp = root_; local
105 root_ = temp;
126 Node* temp = root_; local
129 root_ = temp;
230 Node* temp = current->left_; local
231 current->left_ = temp->right_;
232 temp->right_ = current;
233 current = temp;
246 Node* temp = current->right_; local
247 current->right_ = temp
[all...]
/external/emma/core/java12/com/vladium/util/
H A DClassLoaderResolver.java210 CallerResolver temp = null;
216 temp = new CallerResolver ();
222 CALLER_RESOLVER = temp;
/external/icu/icu4c/source/common/
H A Dlistformatter.cpp159 ListFormatInternal* temp = static_cast<ListFormatInternal*>(listPatternHash->get(key)); local
160 if (temp != NULL) {
162 result = temp;
344 UnicodeString temp[2]; local
352 temp[0],
360 temp[npos].remove();
363 temp[pos],
365 temp[npos],
372 temp[npos].remove();
375 temp[po
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcg7coll.c204 UChar temp[sizeof(rules)]; local
206 u_uastrcpy(temp, rules);
210 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
235 UChar temp[sizeof(rules)]; local
237 u_uastrcpy(temp, rules);
241 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
264 UChar temp[sizeof(rules)]; local
266 u_uastrcpy(temp, rules);
270 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
294 UChar temp[sizeo local
[all...]
/external/icu/icu4c/source/tools/ctestfw/unicode/
H A Dutimer.h248 UTimer temp; local
249 utimer_getTime(&temp);
250 return uprv_delta(timer,&temp);
/external/oprofile/libdb/
H A Dodb.h231 uint32_t temp = value & 0xffffffff; local
232 return ((temp << 0) ^ (temp >> 8)) & data->hash_mask;
/external/srec/shared/src/
H A DLStringImpl.c62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2))); local
63 if (temp == NULL)
66 impl->value = temp;
/external/tcpdump/
H A Dparsenfsfh.c123 u_int32_t temp; local
288 temp = make_uint32(fhp[3], fhp[2], fhp[1], fhp[0]);
289 fsidp->Fsid_dev.Minor = temp & 0xFFFFF;
290 fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
342 temp = make_uint16(fhp[0], fhp[1]);
343 fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
344 temp = make_uint24(fhp[1], fhp[2], fhp[3]);
345 fsidp->Fsid_dev.Minor = temp & 0x3FFFF;
359 temp = make_uint32(fhp[7], fhp[6], fhp[5], fhp[4]);
360 *inop = temp;
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.h561 LOperand* temp) {
564 temps_[0] = temp;
569 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
685 LModI(LOperand* left, LOperand* right, LOperand* temp) { argument
688 temps_[0] = temp;
693 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
745 LDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) { argument
748 temps_[0] = temp;
753 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
809 LFlooringDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) { argument
559 LWrapReceiver(LOperand* receiver, LOperand* function, LOperand* temp) argument
817 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
826 LMulI(LOperand* left, LOperand* right, LOperand* temp) argument
834 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
879 LMathRound(LOperand* value, LOperand* temp) argument
884 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
974 LMathPowHalf(LOperand* value, LOperand* temp) argument
980 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1015 LCompareMinusZeroAndBranch(LOperand* value, LOperand* temp) argument
1021 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1031 LIsObjectAndBranch(LOperand* value, LOperand* temp) argument
1037 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1047 LIsStringAndBranch(LOperand* value, LOperand* temp) argument
1053 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1079 LIsUndetectableAndBranch(LOperand* value, LOperand* temp) argument
1085 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1119 LHasInstanceTypeAndBranch(LOperand* value, LOperand* temp) argument
1125 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1166 LIsConstructCallAndBranch(LOperand* temp) argument
1170 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1179 LClassOfTestAndBranch(LOperand* value, LOperand* temp, LOperand* temp2) argument
1186 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1229 LInstanceOfKnownGlobal(LOperand* context, LOperand* value, LOperand* temp) argument
1237 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1346 LConstantD(LOperand* temp) argument
1350 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1383 LBranch(LOperand* value, LOperand* temp) argument
1389 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1427 LDateField(LOperand* date, LOperand* temp, Smi* index) argument
1434 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1643 LLoadFunctionPrototype(LOperand* function, LOperand* temp) argument
1649 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
1793 LStoreContextSlot(LOperand* context, LOperand* value, LOperand* temp) argument
1801 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2066 LNumberTagI(LOperand* value, LOperand* temp) argument
2072 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2080 LNumberTagU(LOperand* value, LOperand* temp) argument
2086 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2094 LNumberTagD(LOperand* value, LOperand* temp) argument
2100 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2110 LDoubleToI(LOperand* value, LOperand* temp) argument
2116 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2141 LTaggedToI(LOperand* value, LOperand* temp) argument
2147 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2171 LNumberUntagD(LOperand* value, LOperand* temp) argument
2177 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2204 LStoreNamedField(LOperand* obj, LOperand* val, LOperand* temp, LOperand* temp_map) argument
2216 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2306 LTransitionElementsKind(LOperand* object, LOperand* context, LOperand* new_map_temp, LOperand* temp) argument
2319 LOperand* temp() { return temps_[1]; } function in class:v8::internal::FINAL
2338 LTrapAllocationMemento(LOperand* object, LOperand* temp) argument
2345 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2416 LCheckInstanceType(LOperand* value, LOperand* temp) argument
2422 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
2534 LAllocate(LOperand* context, LOperand* size, LOperand* temp) argument
2542 LOperand* temp() { return temps_[0]; } function in class:v8::internal::FINAL
[all...]
/external/chromium_org/base/mac/
H A Dscoped_nsobject.h73 NST temp = that.object_; local
75 object_ = temp;
82 NST temp = object_; variable
84 return temp;
/external/chromium_org/ppapi/api/
H A Dpp_completion_callback.idl253 struct PP_CompletionCallback temp = *cc;
255 PP_RunCompletionCallback(&temp, res);
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dusetperf.cpp77 int32_t temp = 0; local
81 temp += cp;
87 int32_t temp = 0; local
90 temp += uit.getCodepoint();
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters.c26 uint32_t temp = 0; local
39 temp = (uint32_t)(prod >> 31);
40 if(temp == 0) {
43 scaling = 32 - WebRtcSpl_NormU32(temp);
/external/e2fsprogs/ext2ed/
H A Ddir_com.c219 char *ptr,full_dir_name [500],dir_name [500],temp [500],temp2 [500]; local
237 sprintf (temp,"cd %s",full_dir_name);type_ext2___cd (temp);return;
284 sprintf (temp,"cd %s",temp2); /* And continue from there by dispatching a cd command */
285 dispatch (temp); /* (which can call ourself or the general cd) */
295 sprintf (temp,"cd %s",full_dir_name);
296 dispatch (temp);
453 unsigned char temp [80]; local
461 strncpy (temp,dir_entry_ptr->name,dir_entry_ptr->name_len); /* The name is not terminated */
462 temp [dir_entry_pt
595 unsigned char *ptr,buffer [80],variable [80],value [80],temp [80]; local
[all...]
/external/eigen/unsupported/Eigen/src/MoreVectorization/
H A DMathFunctions.h62 Packet4f temp=pmul(s4,z1);//not really a madd but a mul by z so that the next term can be a madd local
63 z1=pmadd(temp,x1,x1);
76 Packet4f temp=pmul(s4,z2);//not really a madd but a mul by z so that the next term can be a madd local
77 z2=pmadd(temp,x2,x2);
/external/guava/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java194 File temp = File.createTempFile("FileBackedOutputStream", null);
198 temp.deleteOnExit();
200 FileOutputStream transfer = new FileOutputStream(temp);
206 file = temp;

Completed in 1215 milliseconds

<<11121314151617181920>>