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

<<11121314151617181920>>

  /external/lzma/CPP/Common/
StdOutStream.cpp 63 void StdOut_Convert_UString_to_AString(const UString &s, AString &temp)
69 ConvertUnicodeToUTF8(s, temp);
71 UnicodeStringToMultiByte2(temp, s, (UINT)codePage);
74 void CStdOutStream::PrintUString(const UString &s, AString &temp)
76 StdOut_Convert_UString_to_AString(s, temp);
77 *this << (const char *)temp;
  /external/mesa3d/src/compiler/glsl/
lower_discard.cpp 42 * temp = false;
45 * temp = cond2;
50 * discard temp;
65 * temp = false;
70 * temp = cond2;
73 * discard temp;
90 * temp = false;
93 * temp = cond2;
97 * temp = cond3;
100 * discard temp;
178 ir_variable *temp = new(mem_ctx) ir_variable(glsl_type::bool_type, local
    [all...]
lower_output_reads.cpp 97 ir_variable *temp = entry ? (ir_variable *) entry->data : NULL; local
100 if (temp == NULL) {
102 temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
104 _mesa_hash_table_insert(replacements, ir->var, temp);
105 ir->var->insert_after(temp);
109 ir->var = temp;
118 copy(void *ctx, ir_variable *output, ir_variable *temp)
121 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp);
lower_vector_insert.cpp 78 ir_variable *const temp = local
83 factory.emit(assign(temp, expr->operands[0]));
84 factory.emit(assign(temp, expr->operands[1], mask));
87 *rv = new(factory.mem_ctx) ir_dereference_variable(temp);
102 ir_variable *const temp = local
108 factory.emit(assign(temp, expr->operands[0]));
128 assign(temp, src_temp, WRITEMASK_X << i)));
132 *rv = new(factory.mem_ctx) ir_dereference_variable(temp);
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer.i 20 %typemap(in) const tensorflow::MetaGraphDef& (tensorflow::MetaGraphDef temp) {
28 if (!temp.ParseFromString(string(c_string, py_size))) {
34 $1 = &temp;
model_analyzer.i 19 %typemap(in) const tensorflow::MetaGraphDef& (tensorflow::MetaGraphDef temp) {
27 if (!temp.ParseFromString(string(c_string, py_size))) {
33 $1 = &temp;
  /external/tensorflow/tensorflow/python/util/
tfprof.i 27 %typemap(in) const string& (string temp) {
28 if (!_PyObjAs<string>($input, &temp)) return NULL;
29 $1 = &temp;
  /frameworks/base/libs/hwui/tests/common/scenes/
MagnifierAnimation.cpp 34 SkBitmap temp; variable
35 magnifier->getSkBitmap(&temp);
36 temp.eraseColor(Color::White);
68 SkBitmap temp; variable
69 magnifier->getSkBitmap(&temp);
73 y + magnifier->height(), &temp);
  /hardware/ril/libril/
rilSocketQueue.h 103 T* temp = NULL; local
109 temp = this->front;
117 return temp;
139 T* temp; local
146 temp = *ppCur;
148 free(temp);
  /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DecimalQuantity_SimpleStorage.java 143 String temp = Double.toString(input); local
145 if (temp.length() == 3 && temp.equals("0.0")) {
150 } else if (temp.indexOf('E') != -1) {
152 assert temp.indexOf('.') == 1;
153 int expPos = temp.indexOf('E');
154 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos));
155 primaryScale = Integer.parseInt(temp.substring(expPos + 1)) - (expPos - 1) + 1;
157 } else if (temp.charAt(0) == '0')
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_SimpleStorage.java 140 String temp = Double.toString(input); local
142 if (temp.length() == 3 && temp.equals("0.0")) {
147 } else if (temp.indexOf('E') != -1) {
149 assert temp.indexOf('.') == 1;
150 int expPos = temp.indexOf('E');
151 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos));
152 primaryScale = Integer.parseInt(temp.substring(expPos + 1)) - (expPos - 1) + 1;
154 } else if (temp.charAt(0) == '0')
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
toaiff.py 70 for temp in temps[:]:
71 if temp != ret:
73 os.unlink(temp)
76 temps.remove(temp)
104 (fd, temp) = tempfile.mkstemp()
106 temps.append(temp)
107 sts = table[ftype].copy(fname, temp)
110 return temp
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
UnicodeSetPerf.java 91 int temp = 0;
94 temp += cp;
113 int temp = 0;
116 temp += cp;
130 int temp = 0;
133 temp += uit.codepoint;
151 int temp = 0;
154 temp += ((Integer)itr.next()).intValue();
  /external/libopus/silk/fixed/
find_LTP_FIX.c 49 opus_int32 xx, nrg, temp; local
76 temp = silk_SMLAWB( 1, nrg, SILK_FIX_CONST( LTP_CORR_INV_MAX, 16 ) );
77 temp = silk_max( temp, xx );
81 XXLTP_Q17_ptr[ i ] = silk_DIV32_varQ( XXLTP_Q17_ptr[ i ], temp, 17 );
84 xXLTP_Q17_ptr[ i ] = silk_DIV32_varQ( xXLTP_Q17_ptr[ i ], temp, 17 );
88 XXLTP_Q17_ptr[ i ] = (opus_int32)( silk_LSHIFT64( (opus_int64)XXLTP_Q17_ptr[ i ], 17 ) / temp );
91 xXLTP_Q17_ptr[ i ] = (opus_int32)( silk_LSHIFT64( (opus_int64)xXLTP_Q17_ptr[ i ], 17 ) / temp );
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_idct8x8_add_sse2.c 131 __m128i temp[4]; local
145 temp[0] = io[4];
146 temp[1] = io[5];
147 temp[2] = io[6];
148 temp[3] = io[7];
155 io[8] = temp[0];
156 io[9] = temp[1];
157 io[10] = temp[2];
158 io[11] = temp[3];
188 __m128i temp[4] local
    [all...]
highbd_idct8x8_add_sse4.c 133 __m128i temp[4]; local
147 temp[0] = io[4];
148 temp[1] = io[5];
149 temp[2] = io[6];
150 temp[3] = io[7];
157 io[8] = temp[0];
158 io[9] = temp[1];
159 io[10] = temp[2];
160 io[11] = temp[3];
190 __m128i temp[4] local
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_arm64_gcc.h 56 int32_t temp; local
63 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
64 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
67 [temp]"=&r" (temp),
80 int32_t temp; local
85 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
86 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
88 [temp]"=&r" (temp),
100 int32_t temp; local
192 int32_t temp; local
216 int32_t temp; local
236 int32_t temp; local
    [all...]
  /external/python/cpython2/Lib/
toaiff.py 70 for temp in temps[:]:
71 if temp != ret:
73 os.unlink(temp)
76 temps.remove(temp)
104 (fd, temp) = tempfile.mkstemp()
106 temps.append(temp)
107 sts = table[ftype].copy(fname, temp)
110 return temp
  /external/tensorflow/tensorflow/python/platform/
base.i 104 %typemap(in) const string& (string temp) {
105 if (!_PyObjAs<string>($input, &temp)) return NULL;
106 $1 = &temp;
121 %typemap(in, numinputs = 0) string* OUTPUT (string temp) {
122 $1 = &temp;
138 %typemap(in) std::vector<type>(std::vector<type> temp) {
139 if (!tf_vector_input_helper($input, &temp, _PyObjAs<type>)) {
144 $1 = temp;
146 %typemap(in) const std::vector<type>& (std::vector<type> temp),
147 const std::vector<type>* (std::vector<type> temp) {
    [all...]
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
test9-expected.cc 20 Foo* temp = param; local
24 Foo* temp = param.get(); local
test9-original.cc 20 Foo* temp = param; local
24 Foo* temp = param.get(); local
  /external/xz-embedded/linux/lib/xz/
xz_dec_bcj.c 75 } temp; member in struct:xz_dec_bcj
395 * Flush pending filtered data from temp to the output buffer.
397 * data to the beginning of temp.
403 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos);
404 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
407 s->temp.filtered -= copy_size;
408 s->temp.size -= copy_size;
409 memmove(s->temp.buf, s->temp.buf + copy_size, s->temp.size)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
toaiff.py 70 for temp in temps[:]:
71 if temp != ret:
73 os.unlink(temp)
76 temps.remove(temp)
104 (fd, temp) = tempfile.mkstemp()
106 temps.append(temp)
107 sts = table[ftype].copy(fname, temp)
110 return temp
  /prebuilts/gdb/linux-x86/lib/python2.7/
toaiff.py 70 for temp in temps[:]:
71 if temp != ret:
73 os.unlink(temp)
76 temps.remove(temp)
104 (fd, temp) = tempfile.mkstemp()
106 temps.append(temp)
107 sts = table[ftype].copy(fname, temp)
110 return temp
  /prebuilts/go/darwin-x86/src/math/
sinh.go 45 var temp float64
48 temp = Exp(x) / 2
51 temp = (Exp(x) - Exp(-x)) / 2
55 temp = (((P3*sq+P2)*sq+P1)*sq + P0) * x
56 temp = temp / (((sq+Q2)*sq+Q1)*sq + Q0)
60 temp = -temp
62 return temp

Completed in 633 milliseconds

<<11121314151617181920>>