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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_decoder.c 68 struct pipe_video_codec temp; local
82 temp = *templat;
83 temp.width = pot_buffers ? util_next_power_of_two(width) : align(width, VL_MACROBLOCK_WIDTH);
84 temp.height = pot_buffers ? util_next_power_of_two(height) : align(height, VL_MACROBLOCK_HEIGHT);
86 switch (u_reduce_video_profile(temp.profile)) {
88 return vl_create_mpeg12_decoder(pipe, &temp);
  /external/tensorflow/tensorflow/core/lib/gtl/
stl_util.h 72 ForwardIterator temp = begin; local
74 delete temp->second;
88 auto temp = it; local
90 delete *temp;
103 auto temp = it; local
105 delete temp->second;
  /external/webrtc/webrtc/common_audio/signal_processing/
complex_bit_reverse.c 72 int32_t temp = 0; local
74 temp = complex_data_ptr[index[m]]; /* Real and imaginary */
76 complex_data_ptr[index[m + 1]] = temp;
87 int32_t temp = 0; local
103 temp = complex_data_ptr[m]; /* Real and imaginary */
105 complex_data_ptr[mr] = temp;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
q_gain_c.cpp 210 Word16 temp; local
274 temp = index + (index << 1);
276 p = &qua_gain_code[temp];
278 temp = (gcode0 * *(p++)) >> 15;
281 *gain = temp << 1;
285 *gain = temp;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
preemph.c 35 Word16 temp; local
38 temp = x[lg - 1];
51 *mem = temp;
64 Word16 temp; local
67 temp = x[lg - 1];
94 *mem = temp;
  /frameworks/rs/tests/lldb/cpp/WaitAttach/
simple.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/java/DebugWaitAttach/src/rs/
simple.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/jni/DebugWaitAttach/jnidebugwaitattach/
simple.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
  /prebuilts/misc/common/swig/include/2.0.11/d/
dprimitives.swg 37 %typemap(in) const TYPE & ($*1_ltype temp)
38 %{ temp = ($*1_ltype)$input;
39 $1 = &temp; %}
43 %{ static $*1_ltype temp;
44 temp = ($*1_ltype)$input;
45 $result = &temp; %}
80 %typemap(in) const bool & ($*1_ltype temp)
81 %{ temp = $input ? true : false;
82 $1 = &temp; %}
87 %{ static $*1_ltype temp;
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
std_string.i 38 %typemap(in) const string & ($*1_ltype temp) {
40 temp.assign(SCHEME_STR_VAL($input));
41 $1 = &temp;
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
enumint.swg 8 %typemap(in,fragment=SWIG_AsVal_frag(int),noblock=1) const enum SWIGTYPE& (int val, int ecode, $basetype temp) {
13 temp = %static_cast(val,$basetype);
14 $1 = &temp;
swigobject.swg 7 %typemap(in,noblock=1) SWIG_Object const & ($*ltype temp)
9 temp = %static_cast($input, $*ltype);
10 $1 = &temp;
  /external/libcups/cups/
string.c 154 char temp[1024]; /* Temporary buffer */ local
165 strftime(temp, sizeof(temp), "%c", dateval);
166 cupsCharsetToUTF8((cups_utf8_t *)buf, temp, (int)bufsize, cg->lang_default->encoding);
213 temp[1024], /* Temporary string */ local
225 snprintf(temp, sizeof(temp), "%.12f", number);
226 for (tempptr = temp + strlen(temp) - 1;
227 tempptr > temp && *tempptr == '0'
403 char temp[1024], \/* Temporary buffer *\/ local
    [all...]
http-addrlist.c 89 char temp[256]; /* Temporary address string */ local
134 DEBUG_printf(("2httpAddrConnect2: Trying %s:%d...", httpAddrString(&(addrlist->addr), temp, sizeof(temp)), httpAddrPort(&(addrlist->addr))));
199 DEBUG_printf(("1httpAddrConnect2: Connected to %s:%d...", httpAddrString(&(addrlist->addr), temp, sizeof(temp)), httpAddrPort(&(addrlist->addr))));
222 DEBUG_printf(("1httpAddrConnect2: Unable to connect to %s:%d: %s", httpAddrString(&(addrlist->addr), temp, sizeof(temp)), httpAddrPort(&(addrlist->addr)), strerror(errno)));
324 DEBUG_printf(("1httpAddrConnect2: Connected to %s:%d...", httpAddrString(&peer, temp, sizeof(temp)), httpAddrPort(&peer)));
480 *temp; /* New address * local
    [all...]
  /prebuilts/misc/windows/sdl2/test/
controllermap.c 52 SDL_Surface *temp; local
56 temp = SDL_LoadBMP(file);
57 if (temp == NULL) {
64 if (temp->format->palette) {
65 SDL_SetColorKey(temp, SDL_TRUE, *(Uint8 *) temp->pixels);
67 switch (temp->format->BitsPerPixel) {
69 SDL_SetColorKey(temp, SDL_TRUE,
70 (*(Uint16 *) temp->pixels) & 0x00007FFF);
73 SDL_SetColorKey(temp, SDL_TRUE, *(Uint16 *) temp->pixels)
113 char mapping[4096], temp[4096]; local
181 SDL_JoystickGetGUIDString(SDL_JoystickGetGUID(joystick), temp, SDL_arraysize(temp)); local
    [all...]
  /external/toybox/toys/pending/
mdev.c 37 char *device_name = 0, *s, *temp; local
45 temp = strrchr(path, '/');
47 *temp = 0;
60 if (!(temp = getenv("MODALIAS"))) xrun((char *[]){"modprobe", temp, 0});
61 if (!(temp = getenv("SUBSYSTEM"))) return;
62 type = strcmp(temp, "block") ? S_IFCHR : S_IFBLK;
63 if (!(temp = getenv("MAJOR"))) return;
64 sscanf(temp, "%u", &major);
65 if (!(temp = getenv("MINOR"))) return
    [all...]
mke2fs.c 225 uint32_t temp; local
228 temp = (inodes + TT.groups - 1) / TT.groups;
230 return ((temp + inodes - 1)/inodes)*inodes;
237 uint32_t temp; local
241 for (temp = 0; temp < 4; temp++) if (TT.blocksize == 1024<<temp) break;
242 if (temp==4) error_exit("bad blocksize");
243 sb->log_block_size = sb->log_frag_size = SWAP_LE32(temp);
366 int temp; local
411 int i, temp; local
    [all...]
  /system/core/libpixelflinger/codeflinger/
blending.cpp 33 component_t& temp, // incomming fragment / output
41 integer_t fragment(temp.reg, temp.h, temp.flags);
42 if (!(temp.flags & CORRUPTIBLE)) {
43 temp.reg = regs.obtain();
44 temp.flags |= CORRUPTIBLE;
60 build_blendFOneMinusF(temp, factor, fragment, fogColor);
65 component_t& temp, // incomming fragment / output
78 if (!temp.size())
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jn.c 59 double a, b, temp, di; local
97 case 0: temp = cos(x)+sin(x); break;
98 case 1: temp = -cos(x)+sin(x); break;
99 case 2: temp = -cos(x)-sin(x); break;
100 case 3: temp = cos(x)-sin(x); break;
102 b = invsqrtpi*temp/sqrt(x);
107 temp = b;
109 a = temp;
120 temp = x*0.5; b = temp;
221 double a, b, temp; local
    [all...]
  /external/fdlibm/
e_jn.c 61 double a, b, temp, di; local
100 case 0: temp = ieee_cos(x)+ieee_sin(x); break;
101 case 1: temp = -ieee_cos(x)+ieee_sin(x); break;
102 case 2: temp = -ieee_cos(x)-ieee_sin(x); break;
103 case 3: temp = ieee_cos(x)-ieee_sin(x); break;
105 b = invsqrtpi*temp/ieee_sqrt(x);
110 temp = b;
112 a = temp;
123 temp = x*0.5; b = temp;
223 double a, b, temp; local
    [all...]
  /external/libgsm/src/
rpe.c 267 word xmax, xmaxc, temp, temp1, temp2; local
276 temp = xM[i];
277 temp = GSM_ABS(temp);
278 if (temp > xmax) xmax = temp;
285 temp = SASR( xmax, 9 );
290 itest |= (temp <= 0);
291 temp = SASR( temp, 1 )
361 word temp, temp1, temp2, temp3; local
    [all...]
  /external/libyuv/files/source/
row_any.cc 22 // memset for temp is meant to clear the source buffer (not dest) so that
38 SIMD_ALIGNED(uint8 temp[64 * 5]); \
39 memset(temp, 0, 64 * 4); /* for msan */ \
45 memcpy(temp, y_buf + n, r); \
46 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
47 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
48 memcpy(temp + 192, a_buf + n, r); \
49 ANY_SIMD(temp, temp + 64, temp + 128, temp + 192, temp + 256,
    [all...]
  /external/ltp/testcases/kernel/fs/inode/
inode01.c 79 FILE *temp; variable
123 fprintf(temp, "\tSIGTERM signal set failed!, errno=%d\n",
141 fprintf(temp, "\tcreating directory '%s'\n", path_string);
142 fprintf(temp, "\t\n%s Impossible to create directory %s\n",
168 fprintf(temp,
201 fprintf(temp,
213 fprintf(temp,
234 fprintf(temp,
242 fprintf(temp,
255 fprintf(temp, "\nClean up:\trm string = %s\n", rm_string)
    [all...]
  /art/libartbase/base/
stride_iterator.h 56 StrideIterator<T> temp = *this; local
58 return temp;
67 StrideIterator<T> temp = *this; local
69 return temp;
78 StrideIterator<T> temp = *this; local
79 temp += delta;
80 return temp;
89 StrideIterator<T> temp = *this; local
90 temp -= delta;
91 return temp;
    [all...]
  /external/icu/icu4c/source/test/perf/utrie2perf/
utrie2perf.bat 17 %PERF% CheckFCD -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
18 rem %PERF% CheckFCDAlwaysGet -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
19 rem %PERF% CheckFCDUTF8 -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
20 %PERF% ToNFC -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
21 %PERF% GetBiDiClass -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000

Completed in 501 milliseconds

1 2 3 4 5 6 7 8 91011>>