Searched defs:temp (Results 226 - 250 of 1265) sorted by relevance

1234567891011>>

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters.c36 uint32_t temp = 0; local
45 temp = (uint32_t)(prod >> 31);
46 if(temp == 0) {
49 scaling = 32 - WebRtcSpl_NormU32(temp);
/external/zlib/src/contrib/minizip/
H A Dcrypt.h37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
/external/aac/libFDK/src/
H A DFDK_trigFcts.cpp242 FIXP_DBL result, temp; local
261 temp = fPow2(x); // q25 * q25 - (DFRACT_BITS-1) = q19
262 temp = fMult(temp, ONEBY3P56); // q19 * q31 - (DFRACT_BITS-1) = q19
263 temp = temp + Q(19); // q19 + q19 = q19
264 result = fDivNorm(x, temp, &res_e);
279 temp = fPow2Div2(x); // q25 * q25 - (DFRACT_BITS-1) - 1 = q18
280 temp = temp
[all...]
/external/bluetooth/bluedroid/bta/ar/
H A Dbta_ar.c249 UINT8 temp[8], *p; local
284 p = temp;
287 (UINT32)2, (UINT8*)temp);
305 UINT8 temp[8], *p; local
340 p = temp;
343 (UINT32)2, (UINT8*)temp);
/external/bluetooth/bluedroid/stack/a2dp/
H A Da2d_api.c174 UINT8 temp[8]; local
205 p = temp;
208 (UINT32)2, (UINT8*)temp);
/external/chromium_org/base/
H A Dstl_util.h42 ForwardIterator temp = begin; local
44 delete *temp;
59 ForwardIterator temp = begin; local
61 delete temp->first;
62 delete temp->second;
73 ForwardIterator temp = begin; local
75 delete temp->first;
87 ForwardIterator temp = begin; local
89 delete temp->second;
/external/chromium_org/base/win/
H A Dscoped_handle.h89 Handle temp = handle_; local
91 if (Traits::IsHandleValid(temp)) {
92 Verifier::StopTracking(temp, this, BASE_WIN_GET_CALLER,
95 return temp;
H A Dshortcut.cc205 wchar_t temp[MAX_PATH]; local
207 if (FAILED(i_shell_link->GetPath(temp, MAX_PATH, NULL, SLGP_UNCPRIORITY)))
209 properties->set_target(FilePath(temp));
213 if (FAILED(i_shell_link->GetWorkingDirectory(temp, MAX_PATH)))
215 properties->set_working_dir(FilePath(temp));
219 if (FAILED(i_shell_link->GetArguments(temp, MAX_PATH)))
221 properties->set_arguments(temp);
226 if (FAILED(i_shell_link->GetDescription(temp, MAX_PATH)))
228 properties->set_description(temp);
233 if (FAILED(i_shell_link->GetIconLocation(temp, MAX_PAT
[all...]
/external/chromium_org/chrome/browser/media/
H A Ddesktop_media_list_ash.cc133 Source temp = sources_[old_pos]; local
135 sources_.insert(sources_.begin() + pos, temp);
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
H A Dport_monitor_unittest.cc50 base::FilePath temp; local
51 PathService::Get(base::DIR_TEMP, &temp);
55 temp.value().c_str()));
115 base::FilePath temp; local
116 PathService::Get(base::DIR_TEMP, &temp);
117 EXPECT_EQ(data_path, temp);
/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_tamper_detection_unittest.cc45 size_t start, end, temp; local
50 temp = input->find("[", start + 1);
52 if (end != std::string::npos && end < temp)
55 start = temp;
/external/chromium_org/components/password_manager/core/browser/
H A Dlogin_database_unittest.cc741 Pickle temp = SerializeVector(vec); local
742 std::vector<base::string16> output = DeserializeVector(temp);
750 temp = SerializeVector(vec);
751 output = DeserializeVector(temp);
/external/chromium_org/extensions/common/
H A Dextension_l10n_util_unittest.cc32 base::ScopedTempDir temp; local
33 ASSERT_TRUE(temp.CreateUniqueTempDir());
35 base::FilePath src_path = temp.path().Append(kLocaleFolder);
47 temp.path(), &manifest, &error));
54 base::ScopedTempDir temp; local
55 ASSERT_TRUE(temp.CreateUniqueTempDir());
57 base::FilePath src_path = temp.path().Append(kLocaleFolder);
69 base::ScopedTempDir temp; local
70 ASSERT_TRUE(temp.CreateUniqueTempDir());
72 base::FilePath src_path = temp
85 base::ScopedTempDir temp; local
144 base::ScopedTempDir temp; local
160 base::ScopedTempDir temp; local
187 base::ScopedTempDir temp; local
[all...]
/external/chromium_org/google_apis/
H A Dgoogle_api_keys.cc195 std::string temp; local
196 if (environment->GetVar(environment_variable_name, &temp)) {
197 key_value = temp;
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_programs.cc760 GLint temp[1 * 2] = { local
763 cmd.Init(kUniform1FakeLocation, 1, &temp[0]);
764 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
770 GLint temp[1 * 2] = { local
773 cmd.Init(kUniform1FakeLocation, 2, &temp[0]);
774 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
781 GLint temp = 0; local
782 cmd.Init(kUniform1FakeLocation, 0, &temp);
783 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
798 GLint temp[] local
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dblock_files_unittest.cc103 CacheAddr temp = entries[source1]; local
105 entries[source2] = temp;
/external/chromium_org/pdf/
H A Dcontrol.cc59 // Temporary move control to origin (0,0) and draw it into temp buffer.
60 // Move to the original position afterward. Since this is going on temp
62 pp::Rect temp = rect(); local
65 MoveTo(temp.point(), false);
/external/chromium_org/remoting/base/
H A Ddispatch_win.h89 VARIANT temp = *other; local
91 *static_cast<VARIANTARG*>(this) = temp;
/external/chromium_org/third_party/boringssl/src/crypto/aes/
H A Daes.c563 uint32_t temp; local
591 temp = rk[3];
592 rk[4] = rk[0] ^ (Te2[(temp >> 16) & 0xff] & 0xff000000) ^
593 (Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
594 (Te0[(temp) & 0xff] & 0x0000ff00) ^
595 (Te1[(temp >> 24)] & 0x000000ff) ^ rcon[i];
609 temp = rk[5];
610 rk[6] = rk[0] ^ (Te2[(temp >> 16) & 0xff] & 0xff000000) ^
611 (Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
612 (Te0[(temp)
658 uint32_t temp; local
[all...]
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcldutil_dbg_empty.cc32 void DbgLangName3(Language lang, char* temp) {}; argument
/external/chromium_org/third_party/freetype/src/cache/
H A Dftcsbits.c132 FT_Int temp; local
149 #define CHECK_CHAR( d ) ( temp = (FT_Char)d, temp == d )
150 #define CHECK_BYTE( d ) ( temp = (FT_Byte)d, temp == d )
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dpngshim.c43 int temp = ( alpha * color ) + 0x80; local
46 return ( temp + ( temp >> 8 ) ) >> 8;
/external/chromium_org/third_party/icu/source/i18n/
H A Dcoleitr.cpp366 const UChar *temp = string.getBuffer(); local
367 u_memcpy(buffer, temp, length);
H A Dutrans.cpp146 UParseError temp; local
149 parseError = &temp;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnptrans.cpp96 UnicodeString temp; local
97 prohibited.toPattern(temp,TRUE);
99 for(int32_t i=0;i<temp.length();i++){
100 printf("%c", (char)temp.charAt(i));

Completed in 550 milliseconds

1234567891011>>