HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 626 - 650 of 3860) sorted by null

<<21222324252627282930>>

  /external/libvpx/libvpx/vp8/encoder/
rdopt.h 31 int temp; local
33 temp = arr[i];
37 arr[j] = temp;
49 int temp, tempi; local
51 temp = arr[i];
59 arr[j] = temp;
  /external/mockito/src/main/java/org/mockito/internal/progress/
MockingProgressImpl.java 55 OngoingStubbing<?> temp = ongoingStubbing;
57 return temp;
92 VerificationMode temp = verificationMode.getObject();
94 return temp;
107 Location temp = stubbingInProgress;
109 throw unfinishedStubbing(temp);
  /external/tensorflow/tensorflow/python/lib/core/
strings.i 67 %typemap(in) const tensorflow::StringPiece & (tensorflow::StringPiece temp) {
68 if (!_BytesToStringPiece($input, &temp)) SWIG_fail;
69 $1 = &temp;
  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalAdjusters.java 351 Temporal temp = temporal.with(DAY_OF_MONTH, 1);
352 int curDow = temp.get(DAY_OF_WEEK);
355 return temp.plus(dowDiff, DAYS);
359 Temporal temp = temporal.with(DAY_OF_MONTH, temporal.range(DAY_OF_MONTH).getMaximum());
360 int curDow = temp.get(DAY_OF_WEEK);
364 return temp.plus(daysDiff, DAYS);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.cpp 132 EdgePointer temp, ans; local
133 temp = allocEdge();
134 ans = temp;
136 onext(temp) = ans;
137 orig(temp) = origin;
138 onext(++temp) = (EdgePointer) (ans + 3);
139 onext(++temp) = (EdgePointer) (ans + 2);
140 orig(temp) = destination;
141 onext(++temp) = (EdgePointer) (ans + 1);
148 EdgePointer alpha, beta, temp; local
333 SEdgeVector temp; local
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
itoatest.cpp 93 char temp[10]; local
94 char *p = temp;
102 } while (p != temp);
117 char temp[20]; local
118 char *p = temp;
126 } while (p != temp);
  /prebuilts/misc/common/swig/include/2.0.11/d/
dstrings.swg 29 %typemap(in) char *& ($*1_ltype temp = 0) %{
30 temp = ($*1_ltype)$input;
31 $1 = &temp;
  /external/mesa3d/src/compiler/glsl/
lower_instructions.cpp 790 ir_variable *temp = new(ir) ir_variable(ir->operands[0]->type->get_base_type(), "dot_res", local
792 this->base_ir->insert_before(temp);
798 assig = assign(temp, mul(swizzle(ir->operands[0]->clone(ir, NULL), i, 1),
801 assig = assign(temp, fma(swizzle(ir->operands[0]->clone(ir, NULL), i, 1),
803 temp));
811 ir->operands[2] = new(ir) ir_dereference_variable(temp);
846 * temp = sub(x, frtemp);
847 * result = temp + ((frtemp != 0.0) ? 1.0 : 0.0);
882 * temp = x + 0.5;
883 * frtemp = frac(temp);
894 ir_variable *temp = new(ir) ir_variable(ir->operands[0]->type, "temp", local
938 ir_variable *temp = new(ir) ir_variable(ir->operands[0]->type, "temp", local
988 ir_variable *temp = new(ir) ir_variable(glsl_type::uvec(elements), "temp", local
1070 ir_variable *temp = local
1191 ir_variable *temp = local
1264 ir_variable *temp = local
1346 ir_variable *temp = local
    [all...]
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherWidgetService.java 69 int temp = 0; local
75 temp = mCursor.getInt(tempColIndex);
82 rv.setTextViewText(R.id.widget_item, String.format(formatStr, temp, day));
  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
InsecureSHA1PRNGKeyDerivator.java 445 int temp;
457 temp = arrW[t-3] ^ arrW[t-8] ^ arrW[t-14] ^ arrW[t-16];
458 arrW[t] = ( temp<<1 ) | ( temp>>>31 );
463 temp = ( ( a<<5 ) | ( a>>>27 ) ) +
470 a = temp;
474 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0x6ED9EBA1) ;
479 a = temp;
483 temp = (( a<<5 ) | ( a>>>27 )) + ((b & c) | (b & d) | (c & d)) +
489 a = temp;
    [all...]
  /external/emma/core/java12/com/vladium/util/
ClassLoaderResolver.java 210 CallerResolver temp = null; external variable declarations
216 temp = new CallerResolver ();
222 CALLER_RESOLVER = temp;
  /external/icu/icu4c/source/test/cintltst/
cg7coll.c 204 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[sizeof(rules)] local
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/unicode/
utimer.h 250 UTimer temp; local
251 utimer_getTime(&temp);
252 return uprv_delta(timer,&temp);
  /external/libcups/cups/
options.c 70 cups_option_t *temp; /* Pointer to new option */ local
116 temp = (cups_option_t *)malloc(sizeof(cups_option_t));
118 temp = (cups_option_t *)realloc(*options, sizeof(cups_option_t) * (size_t)(num_options + 1));
120 if (!temp)
126 *options = temp;
132 memmove(temp + insert + 1, temp + insert, (size_t)(num_options - insert) * sizeof(cups_option_t));
135 temp += insert;
136 temp->name = _cupsStrAlloc(name);
148 temp = *options + insert
    [all...]
  /external/tcpdump/
parsenfsfh.c 115 uint32_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/toybox/toys/posix/
cal.c 28 char temp[21]; local
32 len = strftime(temp, 21, "%B %Y", tm);
34 buf += sprintf(buf, "%*s%*s ", len, temp, 20-len, "");
  /external/v8/src/
splay-tree-inl.h 102 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->left_
    [all...]
  /frameworks/av/media/libaaudio/src/binding/
AAudioStreamRequest.cpp 66 int32_t temp; local
67 status_t status = parcel->readInt32(&temp);
69 mUserId = (uid_t) temp;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
a_refl.cpp 148 Word16 temp;
183 temp = pv_round(L_acc);
184 L_temp = L_mult(mult, temp);
248 Word16 temp; local
287 temp = pv_round(L_acc, pOverflow);
288 L_temp = L_mult(mult, temp, pOverflow);
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_AOC.c 155 AKFLOAT temp; local
168 temp = CalcR(&v[i], &out[0]);
169 if(d < temp){
170 d = temp;
187 temp = tempv.u.x * tempv.u.x
190 if(d < temp){
191 d = temp;
200 temp = dv[i].u.x * cross.u.x
203 temp = fabs(temp);
    [all...]
  /libcore/ojluni/src/main/java/java/net/
SocketOutputStream.java 52 private byte temp[] = new byte[1]; field in class:SocketOutputStream
139 temp[0] = (byte)b;
140 socketWrite(temp, 0, 1);
  /libcore/ojluni/src/main/java/sun/util/resources/
OpenListResourceBundle.java 138 Map<String, Object> temp = createMap(contents.length); local
146 temp.put(key, value);
150 lookup = temp;
  /system/bt/utils/src/
bt_utils.cc 97 int temp; local
98 if (sscanf(buf, "%d", &temp) == 1) {
99 g_DoSchedulingGroup[g_TaskIdx] = temp == 0;
  /test/vts/script/
update_hal_tests.py 45 temp = line[(line.find("value") + 7):]
46 time_out = temp[0:temp.find('"')]
  /test/vts-testcase/hal/script/
update_hal_tests.py 45 temp = line[(line.find("value") + 7):]
46 time_out = temp[0:temp.find('"')]

Completed in 2002 milliseconds

<<21222324252627282930>>