Searched defs:st (Results 226 - 250 of 794) sorted by relevance

1234567891011>>

/external/toybox/toys/posix/
H A Ddu.c77 static int seen_inode(void **list, struct stat *st) argument
79 if (!st) llist_traverse(st, free);
85 else if (!S_ISDIR(st->st_mode) && st->st_nlink > 1) {
93 if(new->ino == st->st_ino && new->dev == st->st_dev)
97 new->ino = st->st_ino;
98 new->dev = st->st_dev;
111 if (!node->parent) TT.st_dev = node->st
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Drefiner.c110 const size_t st = ENH_FL0 - searchSegStartPos - tloc2; local
111 WebRtcSpl_MemSetW16(vect, 0, st);
112 WEBRTC_SPL_MEMCPY_W16(&vect[st], idata, ENH_VECTL - st);
114 const size_t st = searchSegStartPos + tloc2 - ENH_FL0; local
115 if ((st + ENH_VECTL) > idatal) {
116 const size_t en = st + ENH_VECTL - idatal;
117 WEBRTC_SPL_MEMCPY_W16(vect, &idata[st], ENH_VECTL - en);
120 WEBRTC_SPL_MEMCPY_W16(vect, &idata[st], ENH_VECTL);
/external/cblas/src/
H A Dcblas_cgbmv.c41 float *x=(float *)X, *y=(float *)Y, *st=0, *tx=0; local
86 st= x+n;
90 st = x-2;
100 while (x != st);
120 st = y + n;
124 } while(y != st);
158 while (y != st);
H A Dcblas_cgemv.c38 float *x=(float *)X, *y=(float *)Y, *st=0, *tx=0; local
85 st= x+n;
89 st = x-2;
100 while (x != st);
116 st = y + n;
120 } while(y != st);
154 while (y != st);
H A Dcblas_chbmv.c37 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local
77 st= x+n;
81 st = x-2;
92 while (x != st);
110 st = y + n;
114 } while(y != st);
153 while (y != st);
H A Dcblas_chemv.c36 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local
77 st= x+n;
81 st = x-2;
92 while (x != st);
110 st = y + n;
114 } while(y != st);
154 while (y != st);
H A Dcblas_chpmv.c35 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local
75 st= x+n;
79 st = x-2;
90 while (x != st);
108 st = y + n;
112 } while(y != st);
153 while (y != st);
H A Dcblas_zgbmv.c41 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
86 st= x+n;
90 st = x-2;
100 while (x != st);
120 st = y + n;
124 } while(y != st);
158 while (y != st);
H A Dcblas_zgemv.c38 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
84 st= x+n;
88 st = x-2;
99 while (x != st);
119 st = y + n;
123 } while(y != st);
156 while (y != st);
H A Dcblas_zhbmv.c37 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
77 st= x+n;
81 st = x-2;
92 while (x != st);
110 st = y + n;
114 } while(y != st);
153 while (y != st);
H A Dcblas_zhemv.c36 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
77 st= x+n;
81 st = x-2;
92 while (x != st);
110 st = y + n;
114 } while(y != st);
154 while (y != st);
H A Dcblas_zhpmv.c35 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
75 st= x+n;
79 st = x-2;
90 while (x != st);
108 st = y + n;
112 } while(y != st);
153 while (y != st);
/external/clang/test/CodeGen/
H A Dx86_32-arguments-iamcu.c40 // CHECK-LABEL: define void @paddedStruct(i32 %i1, i32 %st.coerce0, i32 %st.coerce1, i32 %st4.0)
41 void paddedStruct(int i1, st5_t st, st4_t st4) {} argument
43 // CHECK-LABEL: define void @largeStructBegin(%struct.st12_t* byval align 4 %st)
44 void largeStructBegin(st12_t st) {} argument
46 // CHECK-LABEL: define void @largeStructMiddle(i32 %i1, %struct.st12_t* byval align 4 %st, i32 %i2, i32 %i3)
47 void largeStructMiddle(int i1, st12_t st, int i2, int i3) {} argument
49 // CHECK-LABEL: define void @largeStructEnd(i32 %i1, i32 %i2, i32 %i3, i32 %st.0, i32 %st.1, i32 %st
50 largeStructEnd(int i1, int i2, int i3, st12_t st) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle-lambdas.cpp80 void test_ST(ST<double> st) { argument
86 st.f();
/external/clang/test/OpenMP/
H A Dparallel_firstprivate_codegen.cpp22 St(const St &st) : a(st.a + st.b), b(0) {} argument
H A Dthreadprivate_codegen.cpp136 // 8 caches created (for Static::s, gs1, gs3, arr_x, main::sm, ST<int>::st,
137 // ST<float>::st, ST<S4>::st)
305 static T st; member in struct:ST
306 #pragma omp threadprivate(st)
310 T ST<T>::st(23);
518 Res += ST<int>::st;
541 Res += static_cast<int>(ST<float>::st);
564 Res += ST<S4>::st.a;
792 Res += ST<int>::st;
[all...]
/external/clang/test/Sema/
H A Dstruct-decl.c14 struct st { struct in struct:s
19 struct st;
22 struct st *f;
/external/curl/src/
H A Dtool_cb_dbg.c105 size_t st = 0; local
117 (void)fwrite(data + st, i - st + 1, 1, output);
118 st = i + 1;
124 (void)fwrite(data + st, i - st + 1, 1, output);
/external/deqp/framework/delibs/decpp/
H A DdeFilePath.cpp174 struct stat st; local
175 int result = stat(normPath.getPath(), &st);
182 struct stat st; local
183 int result = stat(normPath.getPath(), &st);
188 int type = st.st_mode & S_IFMT;
/external/e2fsprogs/lib/blkid/
H A Ddevno.c104 struct stat st; local
119 if (stat(path, &st) < 0)
122 if (S_ISBLK(st.st_mode) && st.st_rdev == devno) {
129 if (list && S_ISDIR(st.st_mode) && !lstat(path, &st) &&
130 S_ISDIR(st.st_mode))
H A Dread.c386 struct stat st; local
397 if (fstat(fd, &st) < 0)
399 if ((st.st_mtime == cache->bic_ftime) ||
440 cache->bic_ftime = st.st_mtime;
/external/e2fsprogs/misc/
H A Dlsattr.c123 STRUCT_STAT st; local
126 if (LSTAT (name, &st) == -1) {
131 if (S_ISDIR(st.st_mode) && !dirs_opt)
142 STRUCT_STAT st; local
152 if (LSTAT (path, &st) == -1)
157 if (S_ISDIR(st.st_mode) && recursive &&
/external/eigen/bench/
H A DBenchTimer.h144 SYSTEMTIME st; local
145 GetSystemTime(&st);
146 return (double)st.wSecond + 1.e-3 * (double)st.wMilliseconds;
/external/elfutils/src/
H A Dranlib.c161 struct stat st; local
162 if (fstat (fd, &st) != 0)
275 || copy_content (arelf, newfd, rest_off, st.st_size - rest_off)
278 || fchmod (newfd, st.st_mode & ALLPERMS) != 0
280 || (({asm ("" :: "r" (fchown (newfd, st.st_uid, st.st_gid))); }),
/external/f2fs-tools/tools/
H A Dfibmap.c64 void print_stat(struct stat64 *st) argument
66 void print_stat(struct stat *st)
70 printf("dev [%d:%d]\n", major(st->st_dev), minor(st->st_dev));
72 st->st_ino, st->st_ino);
73 printf("mode [0x%8x : %d]\n", st->st_mode, st->st_mode);
75 (unsigned long)st->st_nlink,
76 (long)st
90 stat_bdev(struct stat64 *st, unsigned int *start_lba) argument
141 struct stat64 st; local
143 struct stat st; local
[all...]

Completed in 512 milliseconds

1234567891011>>