Searched defs:temp (Results 51 - 75 of 1265) sorted by relevance

1234567891011>>

/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dr1mpyq.h15 Scalar temp = v_givens[j].c() * a[i+m*j] - v_givens[j].s() * a[i+m*(n-1)]; local
17 a[i+m*j] = temp;
22 Scalar temp = w_givens[j].c() * a[i+m*j] + w_givens[j].s() * a[i+m*(n-1)]; local
24 a[i+m*j] = temp;
H A Drwupdt.h19 Scalar temp, rowj; local
28 temp = givens[i].c() * r(i,j) + givens[i].s() * rowj;
30 r(i,j) = temp;
41 temp = givens[j].c() * b[j] + givens[j].s() * alpha;
43 b[j] = temp;
/external/icu/icu4c/source/common/
H A Dustrfmt.c34 UChar temp; local
52 temp = buffer[(length-1) - j];
54 buffer[j] = temp;
/external/lldb/test/functionalities/thread/state/
H A Dmain.c26 int temp = 0; // Set first breakpoint here local
28 while (!g_test && temp < 5)
30 ++temp;
34 return temp; // Set second breakpoint here
/external/srtp/crypto/include/
H A Dkernel_compat.h73 uint32_t temp; local
74 get_random_bytes(&temp, sizeof(temp));
75 return temp % (RAND_MAX+1);
/external/chromium_org/base/mac/
H A Dscoped_cffiledescriptorref.h61 CFFileDescriptorRef temp = fdref_; variable
63 return temp;
/external/chromium_org/cc/resources/
H A Dresource_update_queue.cc30 std::deque<ResourceUpdate> temp; local
31 entry_queue->swap(temp);
32 while (temp.size()) {
33 ResourceUpdate upload = temp.front();
34 temp.pop_front();
/external/chromium_org/content/renderer/
H A Dshared_memory_seqlock_reader.cc28 content::OneWriterSeqLock* seqlock, void* final, void* temp, void* from,
40 memcpy(temp, from, size);
54 memcpy(final, temp, size);
27 FetchFromBuffer( content::OneWriterSeqLock* seqlock, void* final, void* temp, void* from, size_t size) argument
/external/chromium_org/media/base/
H A Dbit_reader_core.h57 uint64 temp; local
58 bool ret = ReadBitsInternal(num_bits, &temp);
59 *out = static_cast<T>(temp);
/external/chromium_org/media/filters/
H A Dh264_bitstream_buffer_unittest.cc45 uint64 temp = (*ptr & 0xff); local
46 temp >>= (8 - num_bits);
47 got |= temp;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_list.c47 struct rc_list * temp; local
54 for (temp = *list; temp->Next; temp = temp->Next);
56 temp->Next = new_value;
57 new_value->Prev = temp;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_fog.c98 GLfloat d, temp; local
107 temp = (end - z) * d;
108 return CLAMP(temp, 0.0F, 1.0F);
112 NEG_EXP( temp, d * z );
113 return temp;
117 NEG_EXP( temp, d * z * z );
118 return temp;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_fog.c98 GLfloat d, temp; local
107 temp = (end - z) * d;
108 return CLAMP(temp, 0.0F, 1.0F);
112 NEG_EXP( temp, d * z );
113 return temp;
117 NEG_EXP( temp, d * z * z );
118 return temp;
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_F32_radix2_kernel.c84 OMX_F32 *temp = out; local
86 in = temp;
H A Dx86SP_FFT_F32_radix4_kernel.c144 OMX_F32 *temp = out; local
146 in = temp;
195 OMX_F32 *temp = out; local
197 in = temp;
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstl_util.h55 ForwardIterator temp = begin; local
57 delete *temp;
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DSkGLContextHelper.cpp39 const GrGLubyte* temp; local
47 SK_GL_RET(*this, temp, GetString(GR_GL_VERSION));
48 const char* versionStr = reinterpret_cast<const char*>(temp);
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dcomplex_bit_reverse.c72 int32_t temp = 0; local
74 temp = complex_data_ptr[index[m]]; /* Real and imaginary */
76 complex_data_ptr[index[m + 1]] = temp;
87 int32_t temp = 0; local
103 temp = complex_data_ptr[m]; /* Real and imaginary */
105 complex_data_ptr[mr] = temp;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dwindow32_w32.c34 int32_t temp; local
49 temp = WEBRTC_SPL_LSHIFT_W32((int32_t)x_hi, 16);
50 x_low = (int16_t) WEBRTC_SPL_RSHIFT_W32((x[i] - temp), 1);
52 temp = WEBRTC_SPL_LSHIFT_W32((int32_t)y_hi, 16);
53 y_low = (int16_t) WEBRTC_SPL_RSHIFT_W32((y[i] - temp), 1);
56 temp = WEBRTC_SPL_LSHIFT_W32(WEBRTC_SPL_MUL_16_16(x_hi, y_hi), 1);
57 temp = (temp + (WEBRTC_SPL_MUL_16_16_RSFT(x_hi, y_low, 14)));
59 z[i] = (temp + (WEBRTC_SPL_MUL_16_16_RSFT(x_low, y_hi, 14)));
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest9-expected.cc20 Foo* temp = param; local
24 Foo* temp = param.get(); local
H A Dtest9-original.cc20 Foo* temp = param; local
24 Foo* temp = param.get(); local
/external/clang/test/SemaCXX/
H A Dswitch-implicit-fallthrough-cxx98.cpp89 ClassWithDtor temp; local
/external/e2fsprogs/ext2ed/
H A Ddisk.c46 char temp [80]; local
53 sprintf (temp,"Seek offset %ld is out of range",offset);
54 internal_error (temp,"disk","low_read");
85 char temp [80]; local
105 sprintf (temp,"Seek offset %ld is out of range",offset);
106 internal_error (temp,"disk","low_write");
/external/iproute2/lib/
H A Dll_addr.c76 int temp; local
82 if (sscanf(arg, "%x", &temp) != 1) {
86 if (temp < 0 || temp > 255) {
90 lladdr[i] = temp;
/external/libvorbis/test/
H A Dtest.c86 float temp = fabs (data_in [k]); local
87 max_abs = MAX (max_abs, temp);

Completed in 544 milliseconds

1234567891011>>