Searched refs:temp (Results 201 - 225 of 1627) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dext_lang_enc.cc396 char temp[4]; local
397 memcpy(temp, src, 4);
398 temp[2] = '\0';
399 LanguageFromCode(temp, &retlang);
402 char temp[4]; local
403 memcpy(temp, src, 4);
404 temp[3] = '\0';
405 LanguageFromCode(temp, &retlang);
511 char temp[5]; local
515 memcpy(temp, src
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_channel_expressions.cpp92 * temp. This will make our handling of the breakdown to
260 ir_expression *temp; local
261 temp = new(mem_ctx) ir_expression(ir_binop_logic_or,
267 temp = new(mem_ctx) ir_expression(ir_binop_logic_or,
270 temp);
272 assign(ir, 0, temp);
281 ir_expression *temp; local
283 temp = new(mem_ctx) ir_expression(ir_binop_mul,
290 temp,
293 last = temp;
313 ir_expression *temp; local
[all...]
/external/libgsm/src/
H A Dlong_term.c68 register word temp, wt_k; local
74 temp = d[k];
75 temp = GSM_ABS( temp );
76 if (temp > dmax) {
77 dmax = temp;
81 temp = 0;
85 temp = gsm_norm( (longword)dmax << 16 );
87 if (temp > 6) scal = 0;
88 else scal = 6 - temp;
169 register word temp; local
310 register word temp; local
486 register word temp; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_channel_expressions.cpp92 * temp. This will make our handling of the breakdown to
260 ir_expression *temp; local
261 temp = new(mem_ctx) ir_expression(ir_binop_logic_or,
267 temp = new(mem_ctx) ir_expression(ir_binop_logic_or,
270 temp);
272 assign(ir, 0, temp);
281 ir_expression *temp; local
283 temp = new(mem_ctx) ir_expression(ir_binop_mul,
290 temp,
293 last = temp;
313 ir_expression *temp; local
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_mixer.c145 EAS_I32 temp; local
146 temp = MaximizerProcess(pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effectData, pEASData->pMixBuffer, pEASData->pMixBuffer, numSamples);
147 temp = (temp * pEASData->masterGain) >> 15;
148 if (temp > 32767)
151 gain = (EAS_U16) temp;
340 EAS_I32 temp; local
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
395 pMixBuffer[dest] += temp;
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_mixer.c145 EAS_I32 temp; local
146 temp = MaximizerProcess(pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effectData, pEASData->pMixBuffer, pEASData->pMixBuffer, numSamples);
147 temp = (temp * pEASData->masterGain) >> 15;
148 if (temp > 32767)
151 gain = (EAS_U16) temp;
340 EAS_I32 temp; local
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
395 pMixBuffer[dest] += temp;
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mixer.c145 EAS_I32 temp; local
146 temp = MaximizerProcess(pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effectData, pEASData->pMixBuffer, pEASData->pMixBuffer, numSamples);
147 temp = (temp * pEASData->masterGain) >> 15;
148 if (temp > 32767)
151 gain = (EAS_U16) temp;
340 EAS_I32 temp; local
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
395 pMixBuffer[dest] += temp;
[all...]
/external/chromium_org/third_party/libxml/src/
H A Duri.c1002 xmlChar *temp; local
1024 temp = (xmlChar *) xmlRealloc(ret, (max + 1) * sizeof(xmlChar));
1025 if (temp == NULL) {
1031 ret = temp;
1037 temp = (xmlChar *) xmlRealloc(ret, (max + 1) * sizeof(xmlChar));
1038 if (temp == NULL) {
1044 ret = temp;
1053 temp = (xmlChar *) xmlRealloc(ret, (max + 1) * sizeof(xmlChar));
1054 if (temp == NULL) {
1060 ret = temp;
1744 xmlChar *temp; local
2595 xmlURI temp; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/
H A DMessages.Designer.cs42 global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Antlr.Runtime.Messages", typeof(Messages).Assembly);
43 resourceMan = temp;
/external/chromium_org/base/
H A Datomicops_internals_mips_gcc.h50 Atomic32 temp, old; local
55 "move %0, %3\n" // temp = new_value
56 "sc %0, %2\n" // *ptr = temp (with atomic check)
60 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
71 Atomic32 temp, temp2; local
76 "ll %0, %4\n" // temp = *ptr
77 "addu %1, %0, %3\n" // temp2 = temp + increment
80 "addu %1, %0, %3\n" // temp2 = temp + increment
82 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
179 Atomic64 temp, ol local
200 Atomic64 temp, temp2; local
[all...]
/external/chromium_org/base/mac/
H A Dscoped_cffiledescriptorref.h61 CFFileDescriptorRef temp = fdref_; variable
63 return temp;
H A Dscoped_launch_data.h61 launch_data_t temp = object_; variable
63 return temp;
/external/chromium_org/extensions/common/
H A Dfile_util_unittest.cc64 base::ScopedTempDir temp; local
65 ASSERT_TRUE(temp.CreateUniqueTempDir());
70 base::FilePath src = temp.path().AppendASCII(extension_id);
74 base::FilePath all_extensions = temp.path().AppendASCII("extensions");
142 base::ScopedTempDir temp; local
143 ASSERT_TRUE(temp.CreateUniqueTempDir());
145 base::FilePath src_path = temp.path().AppendASCII("some_dir");
152 EXPECT_TRUE(file_util::CheckForIllegalFilenames(temp.path(), &error));
156 base::ScopedTempDir temp; local
157 ASSERT_TRUE(temp
172 base::ScopedTempDir temp; local
217 base::ScopedTempDir temp; local
243 base::ScopedTempDir temp; local
307 base::ScopedTempDir temp; local
336 base::ScopedTempDir temp; local
[all...]
/external/chromium_org/mojo/embedder/
H A Dscoped_platform_handle.h34 PlatformHandle temp = handle_; local
36 other.handle_ = temp;
/external/chromium_org/net/disk_cache/blockfile/
H A Dmapped_file_posix.cc34 scoped_ptr<char[]> temp(new char[temp_len]);
35 if (!Read(temp.get(), temp_len, 0))
H A Dmapped_file_win.cc32 scoped_ptr<char[]> temp(new char[temp_len]);
33 if (!Read(temp.get(), temp_len, 0))
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Datomicops_internals_mips_gcc.h77 Atomic32 temp, old; local
82 "move %0, %3\n" // temp = new_value
83 "sc %0, %2\n" // *ptr = temp (with atomic check)
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
98 Atomic32 temp, temp2; local
103 "ll %0, %4\n" // temp = *ptr
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
209 Atomic64 temp, ol local
230 Atomic64 temp, temp2; local
[all...]
H A Dstl_util.h55 ForwardIterator temp = begin; local
57 delete *temp;
/external/chromium_org/tools/stats_viewer/Properties/
H A DResources.Designer.cs47 global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("StatsViewer.Properties.Resources", typeof(Resources).Assembly);
48 resourceMan = temp;
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DResources.Designer.cs42 global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ChromeDebug.Resources", typeof(Resources).Assembly);
43 resourceMan = temp;
/external/chromium_org/v8/src/base/
H A Datomicops_internals_mips64_gcc.h71 Atomic32 temp, old; local
76 "move %0, %3\n" // temp = new_value
77 "sc %0, %2\n" // *ptr = temp (with atomic check)
81 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
92 Atomic32 temp, temp2; local
97 "ll %0, %2\n" // temp = *ptr
98 "addu %1, %0, %3\n" // temp2 = temp + increment
101 "addu %1, %0, %3\n" // temp2 = temp + increment
103 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
208 Atomic64 temp, ol local
229 Atomic64 temp, temp2; local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddouble-truncation.js31 var temp = a | 0;
32 assertEquals(b, temp);
/external/clang/tools/clang-format-vs/ClangFormat/
H A DResources.Designer.cs42 global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LLVM.ClangFormat.Resources", typeof(Resources).Assembly);
43 resourceMan = temp;
/external/opencv/otherlibs/highgui/
H A Dgrfmt_base.cpp251 GrFmtFilterFactory** temp = (GrFmtFilterFactory**)pos; local
253 assert( temp == 0 || (m_factories <= temp && temp < m_factories + m_curFactories));
254 if( temp )
256 factory = *temp++;
257 pos = (ListPosition)(temp < m_factories + m_curFactories ? temp : 0);
/external/oprofile/libutil++/
H A Dchild_reader.cpp132 ssize_t temp = read(fd1, buf1, PIPE_BUF); local
133 if (temp >= 0)
134 end1 = temp;
145 ssize_t temp = read(fd2, buf2 + end2, sz_buf2 - end2); local
146 if (temp > 0)
147 end2 += temp;
171 int temp = end2; local
194 if (ok && temp != end2)

Completed in 3210 milliseconds

1234567891011>>