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

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/filebuf.members/
open_pointer.pass.cpp 20 std::string temp = get_temp_file_name(); local
23 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
29 assert(f.open(temp.c_str(), std::ios_base::in) != 0);
35 std::remove(temp.c_str());
38 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
44 assert(f.open(temp.c_str(), std::ios_base::in) != 0);
50 remove(temp.c_str());
  /system/bt/embdrv/sbc/encoder/srce/
sbc_dct.c 99 register int32_t x0, x1, x2, x3, x4, x5, x6, x7, temp; local
114 temp = x0;
117 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, (temp - x4),
118 x4); /*x4 = ( temp - x4 ) * cos(1*pi/4) ; */
126 temp = x2;
129 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8, (temp - x6),
130 x6); /*x6 = ( temp - x6 ) * cos(3*pi/8) ;*/
146 temp = x1;
148 x5 = temp - x5;
156 temp = x3
231 int32_t temp, x2; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 106 byte[] temp = new byte[BLOCK_SIZE];
110 desFunc(workingKey1, in, inOff, temp, 0);
111 desFunc(workingKey2, temp, 0, temp, 0);
112 desFunc(workingKey3, temp, 0, out, outOff);
116 desFunc(workingKey3, in, inOff, temp, 0);
117 desFunc(workingKey2, temp, 0, temp, 0);
118 desFunc(workingKey1, temp, 0, out, outOff);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 7 template<class A> void temp(A);
10 apply(0, &temp);
11 apply(0, &temp<>);
14 apply(0, &temp<int>);
17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}}
55 template<class T> void temp(T);
58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}}
59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}}
62 invoke(&temp<int>);
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_idct4x4_add_sse4.c 20 __m128i temp[2], step[4]; local
25 temp[0] = _mm_add_epi32(io[0], io[2]); // input[0] + input[2]
26 extend_64bit(temp[0], temp);
27 step[0] = multiplication_round_shift_sse4_1(temp, cospi_16_64);
28 temp[0] = _mm_sub_epi32(io[0], io[2]); // input[0] - input[2]
29 extend_64bit(temp[0], temp);
30 step[1] = multiplication_round_shift_sse4_1(temp, cospi_16_64);
  /external/syslinux/com32/elflink/ldlinux/
kernel.c 20 char *temp; local
76 temp = strstr(cmdline, "initrd=");
77 if (temp) {
83 temp += 6; /* strlen("initrd") */
88 temp++; /* Skip = or , */
90 p = temp;
102 snprintf(initrd_name, n + 1, "%s", temp);
103 temp += n;
120 } while (*temp == ',');
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
b_cn_cod.cpp 210 Word16 temp; local
238 temp = (Word16)((*pShift_reg) & 1);
239 noise_bits |= temp;
364 Word16 temp; local
375 temp = (Word16)(L_mult(i, 10, pOverflow));
376 i = temp >> 1;
501 Word16 temp; local
512 temp = ~(0xFFFF << param_size_table[i]);
513 parm[i] = *pTemp++ & temp;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 55 const double *temp; local
60 temp= *X++;
61 cx+=temp[0];
62 cy+=temp[1];
101 const double *temp; local
106 temp= *X++;
107 cx+=temp[0];
108 cy+=temp[1];
109 cz+=temp[2];
db_utilities_indexing.cpp 38 double temp; local
51 temp= *(s_point++);
52 if(temp<pivot) *(d_bottom++)=temp;
53 else if(temp>pivot) *(d_top--)=temp;
59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp)
71 tempA=temp;
72 tempB=temp+nr_elements;
  /external/opencv/cxcore/src/
cxrand.cpp 55 temp = ( A*X(n) + carry )
56 X(n+1) = temp mod (2^32)
57 carry = temp / (2^32)
73 uint64 temp = *state; \
88 temp = ICV_RNG_NEXT(temp); \
89 t0 = ((unsigned)temp & p[i + 12]) + p[i]; \
90 temp = ICV_RNG_NEXT(temp); \
91 t1 = ((unsigned)temp & p[i + 13]) + p[i+1];
214 uint64 temp = *state; local
281 uint64 temp = *state; local
    [all...]
  /external/selinux/libsemanage/src/
utilities.c 106 semanage_list_t *temp = NULL; local
114 if (!(temp = malloc(sizeof(semanage_list_t))))
117 if (!(temp->data = strdup(data))) {
118 free(temp);
121 temp->next = *list;
122 *list = temp;
146 semanage_list_t *temp; local
148 while ((temp = (*list))) {
149 free(temp->data);
150 (*list) = temp->next
168 semanage_list_t *temp = NULL; local
297 semanage_list_t *temp = malloc(sizeof(semanage_list_t)); local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
IntArray.java 27 int temp[] = new int[mSize + mSize]; local
28 System.arraycopy(mData, 0, temp, 0, mSize);
29 mData = temp;
  /prebuilts/misc/common/swig/include/2.0.11/pike/
std_string.i 28 %typemap(in, pikedesc="tStr") const string & ($*1_ltype temp) {
31 temp.assign(STR0($input.u.string));
32 $1 = &temp;
50 %typemap(directorout) const string & ($*1_ltype temp) {
52 temp.assign(STR0($input.u.string));
53 $result = &temp;
  /system/core/toolbox/upstream-netbsd/lib/libc/string/
swab.c 50 char temp; local
63 #define STEP temp = *fp++,*tp++ = *fp++,*tp++ = temp
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
syn_filt.cpp 270 Word16 temp; local
306 temp = (Word16)(s1 >> 12);
310 temp = MAX_16;
314 temp = MIN_16;
317 s2 = amrnb_fxp_msu_16_by_16bb((Word32)a[1], (Word32)temp, s2);
319 *(yy++) = temp;
320 *(p_y++) = temp;
327 temp = (Word16)(s2 >> 12);
331 temp = MAX_16;
335 temp = MIN_16
    [all...]
  /external/ltp/testcases/kernel/syscalls/nftw/
test_func.c 35 extern FILE *temp;
47 temp = stderr;
65 fprintf(temp, "INFO: Call to fn() at %s\n", path_name);
69 fprintf(temp, "ERROR: Too many paths traversed\n");
80 temp = stderr;
82 fprintf(temp, "INFO: Call to fn() at %s\n", path_name);
86 fprintf(temp, "ERROR: Too many paths traversed\n");
92 fprintf(temp,
128 fprintf(temp, "ERROR: For file %s cwd is %s\n", path_name,
159 fprintf(temp, "ERROR: Should not have traversed %s\n"
    [all...]
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/
DownloadsDeletionTypeTest.java 58 File temp = new File(mDownloadsDirectory, "temp"); local
61 filePaths[0] = temp.getPath();
65 assertThat(mDeletion.isChecked(temp)).isFalse();
71 File temp = new File(mDownloadsDirectory, "temp"); local
74 result.files.add(temp);
80 assertThat(fileSet.contains(temp)).isTrue();
86 File temp = new File(mDownloadsDirectory, "temp"); local
104 File temp = new File(mDownloadsDirectory, "temp"); local
125 File temp = new File(mDownloadsDirectory, "temp"); local
144 File temp = new File(mDownloadsDirectory, "temp"); local
181 File temp = new File(mDownloadsDirectory, "temp"); local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_dlssynth.c 142 EAS_I32 temp; local
145 temp = pDLSArt->modLFOToPitch;
149 temp += ((pDLSArt->modLFOCC1ToPitch * pChannel->modWheel) >> 7);
153 temp += ((pDLSArt->modLFOChanPressToPitch * pChannel->channelPressure) >> 7);
156 pitchCents += FMUL_15x15(temp, pWTVoice->modLFO.lfoValue);
159 temp = pDLSArt->vibLFOToPitch;
163 temp += ((pDLSArt->vibLFOCC1ToPitch * pChannel->modWheel) >> 7);
167 temp += ((pDLSArt->vibLFOChanPressToPitch * pChannel->channelPressure) >> 7);
170 pitchCents += FMUL_15x15(temp, pWTVoice->vibLFO.lfoValue);
187 EAS_I32 temp; local
250 EAS_I32 temp; local
385 EAS_I32 temp; local
469 EAS_I32 temp; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/php/
typemaps.i 28 %typemap(in) TYPE *INPUT(TYPE temp), TYPE &INPUT(TYPE temp)
31 temp = Z_LVAL_PP($input) ? true : false;
32 $1 = &temp;
35 %typemap(in,numinputs=0) TYPE *OUTPUT(TYPE temp), TYPE &OUTPUT(TYPE temp) "$1 = &temp;";
40 ZVAL_BOOL(o,temp$argnum);
57 %typemap(in) TYPE *INPUT(TYPE temp), TYPE &INPUT(TYPE temp)
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testsprite2.c 56 SDL_Surface *temp; local
59 temp = SDL_LoadBMP(file);
60 if (temp == NULL) {
64 sprite_w = temp->w;
65 sprite_h = temp->h;
68 if (temp->format->palette) {
69 SDL_SetColorKey(temp, 1, *(Uint8 *) temp->pixels);
71 switch (temp->format->BitsPerPixel) {
73 SDL_SetColorKey(temp, 1, (*(Uint16 *) temp->pixels) & 0x00007FFF)
108 SDL_Rect viewport, temp; local
    [all...]
  /external/eigen/blas/f2c/
dtbmv.c 24 doublereal temp; local
241 temp = x[j];
247 x[i__] += temp * a[l + i__ + j * a_dim1];
261 temp = x[jx];
268 x[ix] += temp * a[l + i__ + j * a_dim1];
287 temp = x[j];
293 x[i__] += temp * a[l + i__ + j * a_dim1];
307 temp = x[jx];
314 x[ix] += temp * a[l + i__ + j * a_dim1];
338 temp = x[j]
    [all...]
  /external/syslinux/com32/hdt/
hdt-dump-cpu.c 47 char temp[128]={0}; local
48 snprintf(temp,sizeof(temp),"cpu.flags.%s",cpu_flags_names[i]);
49 add_b(temp,get_cpu_flag_value_from_name(&hardware->cpu,cpu_flags_names[i]));
  /external/toybox/tests/
fstype.test 9 bzcat "$BDIR"/squashfs.bz2 > temp.img
10 testing "file" "fstype temp.img" 'squashfs\n' "" ""
11 rm temp.img
  /external/toybox/toys/posix/
echo.c 77 int temp = tolower(*c); local
78 if (temp>='a' && temp<='f') {
79 out = (out*16)+temp-'a'+10;
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
test4-expected.cc 12 Foo* temp = foo; local

Completed in 556 milliseconds

1 2 3 4 5 6 78 91011>>