HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 26 - 50 of 3860) sorted by null

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzHash.h 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
19 h2 = temp & (kHash2Size - 1); \
20 hv = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
24 h2 = temp & (kHash2Size - 1); \
25 temp ^= ((UInt32)cur[2] << 8); \
26 h3 = temp & (kHash3Size - 1); \
27 hv = (temp ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
30 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
31 h2 = temp & (kHash2Size - 1); \
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzHash.h 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
19 h2 = temp & (kHash2Size - 1); \
20 hv = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
24 h2 = temp & (kHash2Size - 1); \
25 temp ^= ((UInt32)cur[2] << 8); \
26 h3 = temp & (kHash3Size - 1); \
27 hv = (temp ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
30 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
31 h2 = temp & (kHash2Size - 1); \
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzHash.h 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
19 h2 = temp & (kHash2Size - 1); \
20 hv = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
24 h2 = temp & (kHash2Size - 1); \
25 temp ^= ((UInt32)cur[2] << 8); \
26 h3 = temp & (kHash3Size - 1); \
27 hv = (temp ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
30 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
31 h2 = temp & (kHash2Size - 1); \
    [all...]
  /external/lzma/C/
LzHash.h 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
19 h2 = temp & (kHash2Size - 1); \
20 hv = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
24 h2 = temp & (kHash2Size - 1); \
25 temp ^= ((UInt32)cur[2] << 8); \
26 h3 = temp & (kHash3Size - 1); \
27 hv = (temp ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
30 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
31 h2 = temp & (kHash2Size - 1); \
    [all...]
Sort.c 8 #define HeapSortDown(p, k, size, temp) \
13 if (temp >= p[s]) break; \
15 } p[k] = temp; }
26 UInt32 temp = p[i]; local
28 HeapSortDown(p, k, size, temp)
36 UInt32 temp = p[size];
38 HeapSortDown(p, k, size, temp)
44 UInt32 temp = p[size]; local
48 HeapSortDown(p, k, size, temp)
51 UInt32 temp = p[size]; local
72 UInt64 temp = p[i]; local
90 UInt64 temp = p[size]; local
97 UInt64 temp = p[size]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_header.cpp 121 uint32 temp; local
136 temp = getUpTo17bits(inputStream, SYNC_WORD_LNGTH);
137 if ((temp & SYNC_WORD) != SYNC_WORD)
147 temp = getNbits(inputStream, 21); // to avoid multiple bitstream accesses
150 switch (temp >> 19) /* 2 */
167 info->layer_description = 4 - ((temp << 13) >> 30); /* 2 */
168 info->error_protection = !((temp << 15) >> 31); /* 1 */
173 calculate_crc((temp << 16) >> 16, 16, crc);
176 info->bitrate_index = (temp << 16) >> 28; /* 4 */
177 info->sampling_frequency = (temp << 20) >> 30; /* 2 *
    [all...]
  /packages/apps/SecureElement/src/com/android/se/security/gpac/
Response_RefreshTag_DO.java 85 long temp; local
86 temp = data[index++];
87 mRefreshTag = (temp << 56L);
88 temp = data[index++];
89 mRefreshTag += (temp << 48L);
90 temp = data[index++];
91 mRefreshTag += (temp << 40L);
92 temp = data[index++];
93 mRefreshTag += (temp << 32L);
94 temp = data[index++]
    [all...]
  /external/toybox/toys/posix/
rmdir.c 24 char *temp; local
36 if (!(temp = strrchr(name, '/'))) return;
37 *temp = 0;
38 } while (!temp[1]);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
l_extract.cpp 164 Word32 temp; local
168 temp = (L_var >> 16);
170 *(pL_var_hi) = (Word16) temp;
171 *(pL_var_lo) = (Word16)((L_var >> 1) - (temp << 15));
  /external/toybox/toys/other/
tac.c 25 struct arg_list *temp; local
30 temp = xmalloc(sizeof(struct arg_list));
31 temp->next = list;
32 temp->arg = c;
33 list = temp;
38 struct arg_list *temp = list->next; local
42 list = temp;
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
Coordinates.java 37 long temp; local
38 temp = Double.doubleToLongBits(lat);
39 result = (int) (temp ^ (temp >>> 32));
40 temp = Double.doubleToLongBits(lng);
41 result = 31 * result + (int) (temp ^ (temp >>> 32));
  /external/libchrome/base/
base64.cc 14 std::string temp; local
15 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
17 // modp_b64_encode_len() returns at least 1, so temp[0] is safe to use.
18 size_t output_size = modp_b64_encode(&(temp[0]), input.data(), input.size());
20 temp.resize(output_size); // strips off null byte
21 output->swap(temp);
25 std::string temp; local
26 temp.resize(modp_b64_decode_len(input.size()));
30 size_t output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
34 temp.resize(output_size)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/guile/
std_common.i 18 char* temp;
19 temp = SWIG_scm2str(x);
20 std::string s(temp);
21 if (temp) SWIG_free(temp);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_outside.cpp 113 #define PAD_CORNER { temp = *prev; \
114 temp |= (temp<<8); \
115 temp |= (temp<<16); \
116 *((uint32*)ptr) = temp; \
117 *((uint32*)(ptr+4)) = temp; \
118 *((uint32*)(ptr+=16)) = temp; \
119 *((uint32*)(ptr+4)) = temp; \
120 *((uint32*)(ptr+=16)) = temp; \
259 uint32 temp, temp2; local
316 temp = *(prev += 16); local
    [all...]
  /device/generic/goldfish/qemu-props/
qemu-props.c 90 char temp[BUFF_SIZE]; local
92 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1);
95 if (len < 0 || len > BUFF_SIZE-1 || temp[0] == '\0')
98 temp[len] = '\0'; /* zero-terminate string */
100 DD("received: %.*s", len, temp);
103 q = strchr(temp, '=');
111 if (strcmp(temp, "qemu.sf.lcd.density") == 0 ) {
112 final_prop_name = temp;
113 } else if (strcmp(temp, "qemu.hw.mainkeys") == 0 )
133 char temp[BUFF_SIZE]; local
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Int32RShiftToInt16_Sat_32x16.c 33 LVM_INT32 temp; local
38 temp = *src >> shift;
41 if (temp > 0x00007FFF)
45 else if (temp < -0x00008000)
51 *dst = (LVM_INT16)temp;
Mult3s_32x16.c 35 LVM_INT32 srcval,temp; local
42 MUL32x16INTO32(srcval,val,temp,15)
44 *dst = temp;
57 LVM_FLOAT temp; local
61 temp = (*src) * val;
63 *dst = temp;
Shift_Sat_v32xv32.c 33 LVM_FLOAT temp; local
41 temp = (LVM_FLOAT)*src;
45 temp = temp * 2;
48 if(temp > 1.0)
49 temp = 1.0;
50 if(temp < -1.0)
51 temp = -1.0;
53 *dst = (LVM_FLOAT)temp;
63 temp = (LVM_FLOAT)*src
    [all...]
  /external/selinux/libsemanage/src/
semanageswig_ruby.i 21 %typemap(in, numinputs=0) char **(char *temp=NULL) {
22 $1 = &temp;
30 %typemap(in, numinputs=0) char ***(char **temp=NULL) {
31 $1 = &temp;
36 %typemap(in, numinputs=0) semanage_module_info_t **(semanage_module_info_t *temp=NULL) {
37 $1 = &temp;
48 %typemap(in, numinputs=0) semanage_context_t **(semanage_context_t *temp=NULL) {
49 $1 = &temp;
60 %typemap(in, numinputs=0) semanage_bool_t ***(semanage_bool_t **temp=NULL) {
61 $1 = &temp;
    [all...]
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/ofstream.cons/
wchar_pointer.pass.cpp 24 std::wstring temp = get_wide_temp_file_name(); local
26 std::ofstream fs(temp.c_str());
30 std::ifstream fs(temp.c_str());
36 std::ifstream fs(temp.c_str(), std::ios_base::out);
41 _wremove(temp.c_str());
43 std::wofstream fs(temp.c_str());
47 std::wifstream fs(temp.c_str());
53 std::wifstream fs(temp.c_str(), std::ios_base::out);
58 _wremove(temp.c_str());
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/
pointer.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp.c_str());
29 std::ifstream fs(temp.c_str());
35 std::ifstream fs(temp.c_str(), std::ios_base::out);
40 std::remove(temp.c_str());
42 std::wofstream fs(temp.c_str());
46 std::wifstream fs(temp.c_str());
52 std::wifstream fs(temp.c_str(), std::ios_base::out);
57 std::remove(temp.c_str());
string.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp);
29 std::ifstream fs(temp);
35 std::ifstream fs(temp, std::ios_base::out);
40 std::remove(temp.c_str());
42 std::wofstream fs(temp);
46 std::wifstream fs(temp);
52 std::wifstream fs(temp, std::ios_base::out);
57 std::remove(temp.c_str());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.cons/
pointer.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp.c_str());
29 std::ifstream fs(temp.c_str());
35 std::ifstream fs(temp.c_str(), std::ios_base::out);
40 std::remove(temp.c_str());
42 std::wofstream fs(temp.c_str());
46 std::wifstream fs(temp.c_str());
52 std::wifstream fs(temp.c_str(), std::ios_base::out);
57 std::remove(temp.c_str());
string.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp);
29 std::ifstream fs(temp);
35 std::ifstream fs(temp, std::ios_base::out);
40 std::remove(temp.c_str());
42 std::wofstream fs(temp);
46 std::wifstream fs(temp);
52 std::wifstream fs(temp, std::ios_base::out);
57 std::remove(temp.c_str());
  /external/swiftshader/third_party/stlport-cpp11-extension/
string 36 std::ostringstream temp;
37 temp << val;
38 return temp.str();

Completed in 676 milliseconds

12 3 4 5 6 7 8 91011>>