HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 126 - 150 of 4258) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libgsm/src/
lpc.c 36 word temp, smax, scalauto; local
49 temp = GSM_ABS( s[k] );
50 if (temp > smax) smax = temp;
183 register word temp; local
198 temp = gsm_norm( L_ACF[0] );
200 assert(temp >= 0 && temp < 32);
203 for (i = 0; i <= 8; i++) ACF[i] = SASR( L_ACF[i] << temp, 16 );
215 temp = P[1]
257 register word temp; local
291 register word temp; local
    [all...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 805 uint8* temp = (uint8 *)OSCL_MALLOC(sizeof(uint8) * length); local
809 if (temp)
811 sps = temp; // Make a copy of the original pointer to be freed later
823 OSCL_FREE(temp);
850 OSCL_FREE(temp);
859 OSCL_FREE(temp);
874 OSCL_FREE(temp);
891 OSCL_FREE(temp);
908 OSCL_FREE(temp);
932 uint32 temp; local
1096 uint temp; local
1188 uint temp; local
1219 uint32 temp, pic_parameter_set_id, seq_parameter_set_id; local
1235 uint32 temp; local
1260 uint32 temp; local
    [all...]
  /external/qemu/android/avd/
util.c 45 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
67 (void) bufprint_app_dir(temp, end);
68 sdkPath = path_parent(temp, 1);
87 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
89 p = bufprint_config_path(temp, end);
94 if (!path_exists(temp)) {
104 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
116 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
157 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
192 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
242 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
sbc_dct.c 87 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 = x3
209 SINT32 temp,x2; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
compute.c 445 "DCL TEMP[0], LOCAL\n"
446 "DCL TEMP[1], LOCAL\n"
452 " UMUL TEMP[0], SV[0], SV[1]\n"
453 " UADD TEMP[0], TEMP[0], SV[3]\n"
454 " UMUL TEMP[1], SV[1], SV[2]\n"
455 " UMUL TEMP[0].w, TEMP[0], TEMP[1].zzzz\n"
456 " UMUL TEMP[0].zw, TEMP[0], TEMP[1].yyyy\n
    [all...]
  /external/mesa3d/src/gallium/tests/trivial/
compute.c 445 "DCL TEMP[0], LOCAL\n"
446 "DCL TEMP[1], LOCAL\n"
452 " UMUL TEMP[0], SV[0], SV[1]\n"
453 " UADD TEMP[0], TEMP[0], SV[3]\n"
454 " UMUL TEMP[1], SV[1], SV[2]\n"
455 " UMUL TEMP[0].w, TEMP[0], TEMP[1].zzzz\n"
456 " UMUL TEMP[0].zw, TEMP[0], TEMP[1].yyyy\n
    [all...]
  /external/chromium/net/data/ftp/
dir-listing-netware-2 4 d [RWCEAFMS] AK101850 512 Nov 16 15:40 temp
  /external/chromium_org/net/data/ftp/
dir-listing-netware-2 4 d [RWCEAFMS] AK101850 512 Nov 16 15:40 temp
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_PixelFormat.3 96 Uint32 temp, pixel;
107 temp=pixel&fmt->Rmask; /* Isolate red component */
108 temp=temp>>fmt->Rshift;/* Shift it down to 8-bit */
109 temp=temp<<fmt->Rloss; /* Expand to a full 8-bit number */
110 red=(Uint8)temp;
113 temp=pixel&fmt->Gmask; /* Isolate green component */
114 temp=temp>>fmt->Gshift;/* Shift it down to 8-bit *
    [all...]
  /external/srtp/crypto/hash/
sha1.c 106 uint32_t A, B, C, D, E, TEMP;
134 TEMP = W[13] ^ W[8] ^ W[2] ^ W[0]; W[16] = S1(TEMP);
135 TEMP = W[14] ^ W[9] ^ W[3] ^ W[1]; W[17] = S1(TEMP);
136 TEMP = W[15] ^ W[10] ^ W[4] ^ W[2]; W[18] = S1(TEMP);
137 TEMP = W[16] ^ W[11] ^ W[5] ^ W[3]; W[19] = S1(TEMP);
138 TEMP = W[17] ^ W[12] ^ W[6] ^ W[4]; W[20] = S1(TEMP)
    [all...]
  /external/zlib/src/contrib/iostream2/
zstream_test.cpp 9 ozstream out("temp.gz");
13 izstream in("temp.gz"); // read it back
19 out.open("temp.gz"); // try ascii output; zcat temp.gz to see the results
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
From2iToMono_16.c 33 LVM_INT32 Temp;
36 Temp = (LVM_INT32)*src;
39 Temp += (LVM_INT32)*src;
42 *dst = (LVM_INT16)(Temp >>1);
From2iToMono_32.c 33 LVM_INT32 Temp;
37 Temp = (*src>>1);
40 Temp +=(*src>>1);
43 *dst = Temp;
  /system/core/toolbox/
getprop.c 12 char temp[PROP_VALUE_MAX + PROP_NAME_MAX + 16]; local
13 snprintf(temp, sizeof temp, "[%s]: [%s]", key, name);
14 strlist_append_dup(list, temp);
  /external/chromium/crypto/
signature_creator_win.cc 46 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/lzma/CPP/Common/
IntToString.cpp 14 char temp[72]; local
19 temp[pos++] = (char)((delta < 10) ? ('0' + delta) : ('a' + (delta - 10)));
24 *s++ = temp[--pos];
31 wchar_t temp[32]; local
35 temp[pos++] = (wchar_t)(L'0' + (int)(value % 10));
40 *s++ = temp[--pos];
  /external/lzma/CPP/7zip/UI/Common/
PropIDUtils.cpp 72 wchar_t temp[12]; local
73 ConvertUInt32ToHex(prop.ulVal, temp);
74 return temp;
95 wchar_t temp[16]; local
97 temp[0] = kPosixTypes[(a >> 12) & 0xF];
100 temp[7 - i] = MY_ATTR_CHAR(a, i + 2, L'r');
101 temp[8 - i] = MY_ATTR_CHAR(a, i + 1, L'w');
102 temp[9 - i] = MY_ATTR_CHAR(a, i + 0, L'x');
104 if ((a & 0x800) != 0) temp[3] = ((a & (1 << 6)) ? 's' : 'S');
105 if ((a & 0x400) != 0) temp[6] = ((a & (1 << 3)) ? 's' : 'S');
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramVertexTest.java 128 " vec4 temp = ATTRIB_position;\n"+
129 " temp.xyz += ATTRIB_normal;\n"+
130 " temp.xy += ATTRIB_texture0;\n"+
131 " gl_Position = temp;\n"+
135 " vec4 temp = ATTRIB_position;\n"+
136 " temp.xyz += ATTRIB_normal;\n"+
137 " temp.xy += ATTRIB_texture0;\n"+
138 " temp += ATTRIB_extra4;\n"+
139 " temp.xyz += ATTRIB_extra3;\n "+
140 " temp.xy += ATTRIB_extra2;\n"
    [all...]
  /external/marisa-trie/lib/marisa/
mapper.cc 75 Mapper temp; local
76 temp.size_ = (std::size_t)file_size;
78 temp.file_ = ::CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ,
80 MARISA_THROW_IF(temp.file_ == NULL, MARISA_IO_ERROR);
82 temp.map_ = ::CreateFileMapping(temp.file_, NULL, PAGE_READONLY, 0, 0, NULL);
83 MARISA_THROW_IF(temp.map_ == NULL, MARISA_IO_ERROR);
85 temp.origin_ = ::MapViewOfFile(temp.map_, FILE_MAP_READ, 0, 0, 0);
86 MARISA_THROW_IF(temp.origin_ == NULL, MARISA_IO_ERROR)
103 Mapper temp; local
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
mapper.cc 78 Mapper temp; local
79 temp.size_ = (std::size_t)file_size;
81 temp.file_ = ::CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ,
83 MARISA_ALPHA_THROW_IF(temp.file_ == NULL, MARISA_ALPHA_IO_ERROR);
85 temp.map_ = ::CreateFileMapping(temp.file_, NULL, PAGE_READONLY, 0, 0, NULL);
86 MARISA_ALPHA_THROW_IF(temp.map_ == NULL, MARISA_ALPHA_IO_ERROR);
88 temp.origin_ = ::MapViewOfFile(temp.map_, FILE_MAP_READ, 0, 0, 0);
89 MARISA_ALPHA_THROW_IF(temp.origin_ == NULL, MARISA_ALPHA_IO_ERROR)
107 Mapper temp; local
    [all...]
  /cts/apps/CtsVerifier/include/colorchecker/
vec3.h 37 Vec3<T> temp(mRed + param.r(), mGreen + param.g(), mBlue + param.b());
38 return temp;
42 Vec3<T> temp(mRed - param.r(), mGreen - param.g(), mBlue - param.b());
43 return temp;
47 Vec3<T> temp(mRed * param, mGreen * param, mBlue * param);
48 return temp;
53 Vec3<float> temp(mRed * static_cast<U>(param.r()),
56 return temp;
61 Vec3<float> temp; local
63 temp.set(static_cast<float>(mRed) / static_cast<float>(param)
71 Vec3<float> temp; local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetLocal.java 40 File temp = cache.get(url); local
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url); local
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 40 File temp = cache.get(url); local
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url); local
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
move_assign.pass.cpp 24 std::string temp = get_temp_file_name(); local
26 std::ofstream fso(temp.c_str());
32 std::ifstream fs(temp.c_str());
37 std::remove(temp.c_str());
39 std::wofstream fso(temp.c_str());
45 std::wifstream fs(temp.c_str());
50 std::remove(temp.c_str());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
move.pass.cpp 24 std::string temp = get_temp_file_name(); local
26 std::ofstream fso(temp.c_str());
31 std::ifstream fs(temp.c_str());
36 std::remove(temp.c_str());
38 std::wofstream fso(temp.c_str());
43 std::wifstream fs(temp.c_str());
48 std::remove(temp.c_str());

Completed in 657 milliseconds

1 2 3 4 56 7 8 91011>>