HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 251 - 275 of 4258) sorted by null

<<11121314151617181920>>

  /external/guava/guava-testlib/src/com/google/common/testing/
ClusterException.java 70 ArrayList<Throwable> temp = new ArrayList<Throwable>(); local
71 temp.addAll(exceptions);
72 this.exceptions = Collections.unmodifiableCollection(temp);
79 ArrayList<Throwable> temp = new ArrayList<Throwable>(); local
81 temp.add(exception);
83 return create(temp);
113 Throwable temp = exceptions.iterator().next(); local
114 if (temp instanceof RuntimeException) {
115 return (RuntimeException)temp;
117 return new RuntimeException(temp);
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 42 int temp, SBE, offset; local
60 temp = *topL++ - orgY[j];
61 SBE += ((temp >= 0) ? temp : -temp);
62 temp = *(leftL += picPitch) - *(orgY_2 += orgPitch);
63 SBE += ((temp >= 0) ? temp : -temp);
76 temp = *topL++ - orgY_2[j]
728 uint32 temp, DC; local
2012 int component, SubBlock_indx, temp; local
    [all...]
  /system/core/libpixelflinger/codeflinger/
blending.cpp 32 component_t& temp, // incomming fragment / output
40 integer_t fragment(temp.reg, temp.h, temp.flags);
41 if (!(temp.flags & CORRUPTIBLE)) {
42 temp.reg = regs.obtain();
43 temp.flags |= CORRUPTIBLE;
59 build_blendFOneMinusF(temp, factor, fragment, fogColor);
64 component_t& temp, // incomming fragment / output
77 if (!temp.size())
    [all...]
  /bionic/libc/upstream-netbsd/libc/stdlib/
_rand48.c 41 unsigned short temp[2]; local
47 temp[0] = (unsigned short) accu; /* lower 16 bits */
51 temp[1] = (unsigned short) accu; /* middle 16 bits */
54 xseed[0] = temp[0];
55 xseed[1] = temp[1];
  /external/chromium_org/third_party/skia/src/xml/
SkXMLParser.cpp 35 SkString temp; local
38 temp.set(gErrorStrings[fCode - 1]);
39 temp.append(fNoun);
41 SkXMLParser::GetNativeErrorString(fNativeCode, &temp);
42 str->append(temp);
  /external/chromium_org/third_party/sqlite/src/test/
tkt2817.test 22 CREATE TEMP TABLE tbl(a, b, c);
31 INSERT INTO main.tbl SELECT a, b, c FROM temp.tbl;
47 # for the fact that the temp-table and the main table do not share the
55 CREATE TEMP TABLE tmp(a, b, c);
64 INSERT INTO main.tbl SELECT a, b, c FROM temp.tmp;
attach2.test 161 # the lock_status list will not contain an entry for the temp
186 lock_status 4.1.1 db {main unlocked temp closed file2 unlocked}
187 lock_status 4.1.2 db2 {main unlocked temp closed file2 unlocked}
198 lock_status 4.2.1 db {main shared temp closed file2 unlocked}
199 lock_status 4.2.2 db2 {main unlocked temp closed file2 unlocked}
206 lock_status 4.3.1 db {main shared temp closed file2 unlocked}
207 lock_status 4.3.2 db2 {main unlocked temp closed file2 unlocked}
217 lock_status 4.4.1 db {main shared temp closed file2 unlocked}
218 lock_status 4.4.2 db2 {main unlocked temp closed file2 unlocked}
238 lock_status 4.5.1 db {main shared temp closed file2 unlocked
    [all...]
e_droptrigger.test 29 if {$name == "temp"} {
54 CREATE TEMP TABLE t1(a, b);
56 CREATE TRIGGER tr1 AFTER $event ON t1 BEGIN SELECT r('temp.tr1') ; END;
80 {main.tr2 temp.tr1 aux.tr1 aux.tr2 aux.tr3}
82 {main.tr2 temp.tr1 aux.tr1 aux.tr2 aux.tr3}
89 {main.tr1 main.tr2 temp.tr1 aux.tr2 aux.tr3}
91 {main.tr1 main.tr2 temp.tr1 aux.tr2 aux.tr3}
94 {main.tr1 main.tr2 temp.tr1 aux.tr1 aux.tr2 aux.tr3}
96 {main.tr1 main.tr2 temp.tr1 aux.tr1 aux.tr2 aux.tr3}
103 1 t1 "DROP TRIGGER tr1" {temp.tr1} {
    [all...]
  /external/skia/src/xml/
SkXMLParser.cpp 35 SkString temp; local
38 temp.set(gErrorStrings[fCode - 1]);
39 temp.append(fNoun);
41 SkXMLParser::GetNativeErrorString(fNativeCode, &temp);
42 str->append(temp);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
DelayAllPass_Sat_32x16To32.c 40 LVM_INT32 temp; local
46 MUL32x16INTO32(delay[AllPassOffset], coeff, temp, 15)
47 a = temp;
67 MUL32x16INTO32(c, -coeff, temp, 15)
68 a = temp;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.cons/
pointer.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
33 std::remove(temp.c_str());
35 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
43 std::remove(temp.c_str());
string.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::fstream fs(temp,
34 std::remove(temp.c_str());
36 std::wfstream fs(temp,
45 std::remove(temp.c_str());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.members/
close.pass.cpp 23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str(), std::ios_base::out);
32 std::remove(temp.c_str());
36 fs.open(temp.c_str(), std::ios_base::out);
41 std::remove(temp.c_str());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str());
32 std::remove(temp.c_str());
36 fs.open(temp.c_str());
41 std::remove(temp.c_str());
rdbuf.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp.c_str());
29 std::remove(temp.c_str());
31 std::wofstream fs(temp.c_str());
35 std::remove(temp.c_str());
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 1525 ULong temp, temp2; local
1559 temp = *(src += lx); local
1677 temp = *(src += lx); local
1722 ULong temp; local
1769 ULong temp; local
1802 ULong temp; local
1869 ULong temp; local
    [all...]
  /external/qemu/android/avd/
info.c 97 IMAGE_STATE_TEMPORARY, /* copied to temp file (no lock needed) */
216 char temp[PATH_MAX], *p = temp, *end= p+sizeof temp; local
222 p = bufprint(temp, end, "%s%d", SEARCH_PREFIX, nn+1 );
226 path = iniFile_getString(configIni, temp, NULL);
230 p = bufprint(temp, end, "%s/%s", sdkRootPath, path);
232 path = ASTRDUP(temp);
265 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp) local
281 char temp[MAX_PATH], *p=temp, *end=p+sizeof(temp); local
301 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
356 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
451 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
555 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
621 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
785 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
888 char temp[PATH_MAX], *p = temp, *end = p + sizeof(temp); local
1077 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
lmpar.h 22 Scalar temp, paru; local
48 temp = wa1[j];
50 wa1[i] -= r(i,j) * temp;
85 temp = wa1.blueNorm();
86 parl = fp / delta / temp / temp;
119 temp = fp;
125 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
135 temp = wa1[j]
178 Scalar temp, paru; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
filter.c 51 int Temp;
57 Temp = ((int)src_ptr[-2 * (int)pixel_step] * vp8_filter[0]) +
66 Temp = Temp >> VP8_FILTER_SHIFT;
68 if (Temp < 0)
69 Temp = 0;
70 else if (Temp > 255)
71 Temp = 255;
73 output_ptr[j] = Temp;
96 int Temp;
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 450 int32 x0, x1, x2, x4, x5, temp; local
476 temp = ((x0 + x2) >> 14);
477 CLIP_RESULT(temp)
478 word = word | (temp << 8);
479 temp = ((x0 + x1) >> 14);
480 CLIP_RESULT(temp)
481 word = word | (temp << 16);
482 temp = ((x0 + x5) >> 14);
483 CLIP_RESULT(temp)
484 word = word | (temp << 24)
507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
    [all...]
  /device/generic/goldfish/qemu-props/
qemu-props.c 85 char temp[BUFF_SIZE]; local
86 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1);
89 if (len < 0 || len > BUFF_SIZE-1 || temp[0] == '\0')
92 temp[len] = '\0'; /* zero-terminate string */
94 DD("received: %.*s", len, temp);
97 q = strchr(temp, '=');
104 if (property_set(temp, q) < 0) {
105 DD("could not set property '%s' to '%s'", temp, q);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 7 template<class A> void temp(A);
10 apply(0, &temp);
11 apply(0, &temp<>);
14 apply(0, &temp<int>);
17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}}
55 template<class T> void temp(T);
58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}}
59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}}
62 invoke(&temp<int>);
  /external/emma/core/java14/com/vladium/util/
IJREVersion.java 60 boolean temp = false;
66 temp = true;
70 _JRE_1_3_PLUS = temp;
72 if (temp)
74 temp = false;
78 temp = true;
82 _JRE_1_4_PLUS = temp;
84 temp = false;
86 _JRE_SUN_SIGNAL_COMPATIBLE = temp;
  /external/icu4c/test/intltest/
locnmtst.cpp 89 UnicodeString temp; local
91 ldn->localeDisplayName("de_DE", temp);
93 test_assert_equal("Deutsch (Deutschland)", temp);
97 UnicodeString temp; local
99 ldn->localeDisplayName("en_GB", temp);
101 test_assert_equal("British English", temp);
105 UnicodeString temp; local
110 ldn->localeDisplayName(locname, temp);
112 test_assert_equal(target, temp);
116 UnicodeString temp; local
126 UnicodeString temp; local
136 UnicodeString temp; local
343 UnicodeString temp; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlpixelformat.html 401 Uint32 temp, pixel;
412 temp=pixel&#38;fmt-&#62;Rmask; /* Isolate red component */
413 temp=temp&#62;&#62;fmt-&#62;Rshift;/* Shift it down to 8-bit */
414 temp=temp&#60;&#60;fmt-&#62;Rloss; /* Expand to a full 8-bit number */
415 red=(Uint8)temp;
418 temp=pixel&#38;fmt-&#62;Gmask; /* Isolate green component */
419 temp=temp&#62;&#62;fmt-&#62;Gshift;/* Shift it down to 8-bit *
    [all...]

Completed in 1321 milliseconds

<<11121314151617181920>>