Searched defs:temp (Results 1 - 25 of 650) sorted by relevance

1234567891011>>

/external/libvpx/vp8/common/
H A Dswapyv12buffer.c16 unsigned char *temp; local
18 temp = last_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
22 temp = last_frame->y_buffer;
24 new_frame->y_buffer = temp;
26 temp = last_frame->u_buffer;
28 new_frame->u_buffer = temp;
30 temp = last_frame->v_buffer;
32 new_frame->v_buffer = temp;
/external/qemu/android/
H A Dhw-lcd.c19 char temp[8]; local
36 snprintf(temp, sizeof temp, "%d", density);
37 boot_property_add("qemu.sf.lcd_density", temp);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/
H A Dregress-108440.js51 var temp = ''; variable
60 temp = (a[a.length]=a);
68 temp = prop;
69 temp = (a[a.length] = self[prop]);
/external/chromium/testing/gtest/samples/
H A Dsample2.cc53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
/external/gtest/samples/
H A Dsample2.cc53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
/external/protobuf/gtest/samples/
H A Dsample2.cc53 const char * const temp = MyString::CloneCString(c_string); local
55 c_string_ = temp;
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_pan.c63 EAS_INT temp; local
78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle);
79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle);
81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN)
82 temp = SYNTH_FULL_SCALE_EG1_GAIN;
83 else if (temp < 0)
84 temp = 0;
86 *pGainRight = (EAS_I16) temp;
89 temp
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_pan.c63 EAS_INT temp; local
78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle);
79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle);
81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN)
82 temp = SYNTH_FULL_SCALE_EG1_GAIN;
83 else if (temp < 0)
84 temp = 0;
86 *pGainRight = (EAS_I16) temp;
89 temp
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_pan.c63 EAS_INT temp; local
78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle);
79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle);
81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN)
82 temp = SYNTH_FULL_SCALE_EG1_GAIN;
83 else if (temp < 0)
84 temp = 0;
86 *pGainRight = (EAS_I16) temp;
89 temp
[all...]
/external/chromium/base/
H A Dbase64.cc12 std::string temp; local
13 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
17 int output_size= modp_b64_encode(&(temp[0]), input.data(), input_size);
21 temp.resize(output_size); // strips off null byte
22 output->swap(temp);
27 std::string temp; local
28 temp.resize(modp_b64_decode_len(input.size()));
32 int output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
36 temp.resize(output_size);
37 output->swap(temp);
[all...]
/external/e2fsprogs/ext2ed/
H A Dext2_com.c53 char temp [80],buffer [80],*ptr; local
69 sprintf (temp,"cd %s",buffer+1);dispatch (temp);
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/icu4c/common/
H A Dustrfmt.c34 UChar temp; local
52 temp = buffer[(length-1) - j];
54 buffer[j] = temp;
/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/base/memory/
H A Dscoped_handle.h35 FILE* temp = handle_; local
37 return temp;
/external/chromium/base/win/
H A Devent_trace_controller_unittest.cc142 FilePath temp; local
144 ASSERT_HRESULT_SUCCEEDED(file_util::CreateTemporaryFile(&temp));
148 temp.value().c_str());
/external/chromium/crypto/
H A Dsignature_creator_win.cc46 std::vector<uint8> temp; local
47 temp.resize(signature_length);
48 if (!CryptSignHash(hash_object_, AT_SIGNATURE, NULL, 0, &temp.front(),
53 temp.resize(signature_length);
54 for (size_t i = temp.size(); i > 0; --i)
55 signature->push_back(temp[i - 1]);
/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/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DCurve.java52 private Vector3f temp = new Vector3f(); field in class:Curve
112 spline.interpolate((float) j / nbSubSegments, cptCP, temp);
113 array[i] = temp.getX();
115 array[i] = temp.getY();
117 array[i] = temp.getZ();
165 spline.interpolate((float) j / nbSubSegments, currentControlPoint, temp);
166 array[lineIndex++] = temp.getX();
167 array[lineIndex++] = temp.getY();
168 array[lineIndex++] = temp.getZ();
/external/protobuf/src/google/protobuf/
H A Dmessage_unittest.cc92 string temp = stream.str(); local
93 EXPECT_TRUE(temp == str1);
/external/protobuf/src/google/protobuf/stubs/
H A Dstl_util-inl.h55 ForwardIterator temp = begin; local
57 delete *temp;
/external/qemu/distrib/sdl-1.2.12/src/joystick/amigaos/
H A DSDL_sysjoystick.c114 ULONG temp,i; local
124 temp=ReadJoyPort(joystick->index^1); // fix to invert amiga joyports
128 if((temp&JP_TYPE_MASK)==JP_TYPE_GAMECTLR)
/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/srec/srec/cfront/
H A Dsh_down.h45 int temp, retval; local
49 temp = value;
51 temp = -value;
53 retval = temp << shift;
55 if ((retval > (int)LONG_MAX) || (retval < temp)) /* TODO: max_val if LONG_MAX, overflow won't be detected */
/external/checkpolicy/
H A Dqueue.c109 queue_node_ptr_t p, temp; local
116 temp = p;
118 free(temp);
146 queue_node_ptr_t p, last, temp; local
167 temp = p;
169 g(temp->element, vp);
170 free(temp);

Completed in 3594 milliseconds

1234567891011>>