Searched defs:temp (Results 126 - 150 of 1265) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal.c782 u32 temp; local
791 temp = rk[3];
792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
793 TE443(temp) ^ TE414(temp) ^ RCON(i);
807 temp = rk[5];
808 rk[6] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
809 TE443(temp)
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal.c782 u32 temp; local
791 temp = rk[3];
792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
793 TE443(temp) ^ TE414(temp) ^ RCON(i);
807 temp = rk[5];
808 rk[6] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
809 TE443(temp)
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-internal.c782 u32 temp; local
791 temp = rk[3];
792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
793 TE443(temp) ^ TE414(temp) ^ RCON(i);
807 temp = rk[5];
808 rk[6] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
809 TE443(temp)
[all...]
/external/aac/libFDK/src/
H A Dscale.cpp352 SHORT temp, maxVal = 0; local
355 temp = (SHORT)(*vector++);
356 maxVal |= (temp^(temp>>(SHORT_BITS-1)));
379 INT_PCM temp, maxVal = 0; local
382 temp = (INT_PCM)(*vector); vector+=stride;
383 maxVal |= (temp^(temp>>((sizeof(INT_PCM)*8)-1)));
405 SHORT temp, maxVal = 0; local
408 temp
433 FIXP_DBL temp, maxVal = (FIXP_DBL)0; local
451 SHORT temp, maxVal = (FIXP_SGL)0; local
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
H A Dsbc_dct.c87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
102 temp = x0 ;
104 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, ( temp - x4 ), x4); /*x4 = ( temp - x4 ) * cos(1*pi/4) ; */
112 temp = x2 ;
114 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8,( temp - x6 ), x6); /*x6 = ( temp - x6 ) * cos(3*pi/8) ;*/
131 temp = x1 ;
133 x5 = temp - x5 ;
141 temp
209 SINT32 temp,x2; local
[all...]
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_sdp.c217 UINT8 temp[8]; local
257 p = temp;
260 (UINT32)2, (UINT8*)temp);
/external/bluetooth/bluedroid/utils/src/
H A Dbt_utils.c104 int temp; local
105 if (sscanf(buf, "%d", &temp) == 1) {
106 g_DoSchedulingGroup[g_TaskIdx] = temp == 0;
/external/ceres-solver/examples/
H A Dfields_of_experts.cc132 double temp; local
133 foe_file >> temp; local
/external/chromium_org/base/
H A Datomicops_internals_arm64_gcc.h39 int32_t temp; local
46 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
47 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
50 [temp]"=&r" (temp),
63 int32_t temp; local
68 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
69 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
71 [temp]"=&r" (temp),
83 int32_t temp; local
175 int32_t temp; local
199 int32_t temp; local
219 int32_t temp; local
[all...]
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...]
H A Datomicops_internals_x86_gcc.h53 Atomic32 temp = increment; local
55 : "+r" (temp), "+m" (*ptr)
57 // temp now holds the old value of *ptr
58 return temp + increment;
63 Atomic32 temp = increment; local
65 : "+r" (temp), "+m" (*ptr)
67 // temp now holds the old value of *ptr
71 return temp + increment;
151 Atomic64 temp = increment; local
153 : "+r" (temp), "
161 Atomic64 temp = increment; local
[all...]
/external/chromium_org/base/mac/
H A Dscoped_nsobject.h73 NST temp = that.object_; local
75 object_ = temp;
82 NST temp = object_; variable
84 return temp;
/external/chromium_org/base/win/
H A Devent_trace_controller_unittest.cc166 FilePath temp; local
167 ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir.path(), &temp));
171 temp.value().c_str());
174 base::DeleteFile(temp, false);
184 base::DeleteFile(temp, false);
/external/chromium_org/components/autofill/core/browser/crypto/
H A Drc4_decryptor.h61 uint8 temp = *byte1; local
63 *byte2 = temp;
/external/chromium_org/components/keyed_service/core/
H A Ddependency_graph.cc27 EdgeMap::iterator temp = it; local
30 if (temp->first == node || temp->second == node)
31 edges_.erase(temp);
88 EdgeMap::iterator temp = it; local
90 edges.erase(temp);
/external/chromium_org/components/nacl/loader/
H A Dnacl_validation_query.cc107 // Calculate the digest into a temp buffer. It is likely safe to calculate it
110 unsigned char temp[kDigestLength]; local
111 CHECK(hasher_.Sign(base::StringPiece(buffer_, buffer_length_), temp,
113 memcpy(buffer_, temp, kDigestLength);
/external/chromium_org/components/search_engines/
H A Ddefault_search_policy_handler_unittest.cc352 const base::Value* temp = NULL; local
356 EXPECT_TRUE(store_->GetValue(kDefaultSearchProviderData, &temp));
357 temp->GetAsDictionary(&dictionary);
418 const base::Value* temp = NULL; local
420 EXPECT_TRUE(store_->GetValue(kDefaultSearchProviderData, &temp));
421 temp->GetAsDictionary(&dictionary);
444 const base::Value* temp = NULL; local
448 EXPECT_TRUE(store_->GetValue(kDefaultSearchProviderData, &temp));
449 temp->GetAsDictionary(&dictionary);
506 const base::Value* temp local
[all...]
/external/chromium_org/crypto/third_party/nss/
H A Drsawrapr.c25 unsigned char *tempHash, *temp; local
52 temp = (unsigned char *)PORT_Alloc(hash->length);
53 (*hash->end)(hashContext, temp, &digestLen, hash->length);
54 PORT_Memcpy(tempHash, temp, maskLen - counter * hash->length);
55 PORT_Free(temp);
/external/chromium_org/extensions/common/
H A Dextension_resource_unittest.cc49 base::ScopedTempDir temp; local
50 ASSERT_TRUE(temp.CreateUniqueTempDir());
52 base::FilePath inner_dir = temp.path().AppendASCII("directory");
57 base::FilePath outer_file = temp.path().AppendASCII("outer");
119 base::ScopedTempDir temp; local
120 ASSERT_TRUE(temp.CreateUniqueTempDir());
124 base::FilePath root_resource = temp.path().AppendASCII(filename);
130 temp.path().Append(kLocaleFolder);
147 ExtensionResource resource(extension_id, temp.path(),
158 EXPECT_EQ(ToLower(temp
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dcommon_decoder.h87 size_t temp = offset + size; local
88 return temp <= size_ && temp >= offset;
/external/chromium_org/mojo/nacl/
H A Dmojo_syscall_internal.h40 uintptr_t temp = NaClUserToSysAddrRange(nap, user_ptr, sizeof(T)); local
41 if (temp != kNaClBadAddress) {
42 *value = *reinterpret_cast<T volatile*>(temp);
54 uintptr_t temp = NaClUserToSysAddrRange(nap, user_ptr, sizeof(T)); local
55 if (temp != kNaClBadAddress) {
56 *sys_ptr = reinterpret_cast<T volatile*>(temp);
71 uintptr_t temp = NaClUserToSysAddrRange(nap, user_ptr, sizeof(T)); local
72 if (temp != kNaClBadAddress) {
73 T volatile* converted = reinterpret_cast<T volatile*>(temp);
96 uintptr_t temp local
116 uintptr_t temp = NaClUserToSysAddrRange(nap, user_ptr, length); local
136 uintptr_t temp = NaClUserToSysAddrRange(nap, user_ptr, sizeof(T)); local
[all...]
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dbindings_internal.h61 T temp = *ptr; local
63 return temp;
/external/chromium_org/remoting/base/
H A Dtyped_buffer.h37 TypedBuffer temp; local
38 temp.Swap(*rvalue.object);
39 Swap(temp);
51 TypedBuffer temp; local
52 temp.Swap(*rvalue.object);
53 Swap(temp);
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Drsaz_exp.c280 *temp = (BN_ULONG *)(table+16*8*8+8*8); local
286 temp[0] = 0-m[0]; temp[1] = ~m[1];
287 temp[2] = ~m[2]; temp[3] = ~m[3];
288 temp[4] = ~m[4]; temp[5] = ~m[5];
289 temp[6] = ~m[6]; temp[7] = ~m[7];
290 rsaz_512_scatter4(table, temp,
[all...]
/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...]

Completed in 6780 milliseconds

1234567891011>>