Searched defs:st (Results 1 - 25 of 794) sorted by relevance

1234567891011>>

/external/clang/test/Modules/
H A Dstddef.c8 size_t st; // expected-error {{must be imported}} variable
/external/elfutils/libelf/
H A Delf_getarhdr.c61 int st = __libelf_next_arhdr_wrlock (parent); local
64 if (st != 0)
H A Delf_readall.c94 struct stat st; local
96 if (fstat (elf->fildes, &st) < 0)
99 if (sizeof (size_t) >= sizeof (st.st_size)
100 || st.st_size <= ~((size_t) 0))
101 elf->maximum_size = (size_t) st.st_size;
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigset/
H A D8-1.c24 sigset_t st; local
25 sigemptyset(&st);
26 sigaddset(&st, SIGCHLD);
28 if (sigprocmask(SIG_BLOCK, &st, NULL) < 0) {
/external/strace/
H A Dprint_struct_stat.c41 print_struct_stat(struct tcb *tcp, const struct strace_stat *const st) argument
46 print_dev_t(st->dev);
47 tprintf(", st_ino=%llu, st_mode=", st->ino);
48 print_symbolic_mode_t(st->mode);
50 st->nlink, st->uid, st->gid);
51 tprintf(", st_blksize=%llu", st->blksize);
52 tprintf(", st_blocks=%llu", st->blocks);
55 print_symbolic_mode_t(st
[all...]
H A Dstat.c35 struct strace_stat st; local
37 if (fetch_struct_stat(tcp, addr, &st))
38 print_struct_stat(tcp, &st);
H A Dstat64.c35 struct strace_stat st; local
37 if (fetch_struct_stat64(tcp, addr, &st))
38 print_struct_stat(tcp, &st);
/external/strace/tests/
H A Dskip_unavailable.c9 struct stat st; local
11 if (stat(path, &st))
/external/strace/tests-m32/
H A Dskip_unavailable.c9 struct stat st; local
11 if (stat(path, &st))
/external/strace/tests-mx32/
H A Dskip_unavailable.c9 struct stat st; local
11 if (stat(path, &st))
/external/libcxx/benchmarks/
H A Dutil_smartptr.bench.cpp14 static void BM_SharedPtrCreateDestroy(benchmark::State& st) { argument
15 while (st.KeepRunning()) {
22 static void BM_SharedPtrIncDecRef(benchmark::State& st) { argument
25 while (st.KeepRunning()) {
32 static void BM_WeakPtrIncDecRef(benchmark::State& st) { argument
35 while (st.KeepRunning()) {
H A Dalgorithms.bench.cpp11 void BM_Sort(benchmark::State& st, GenInputs gen) { argument
13 const auto in = gen(st.range(0));
22 while (st.KeepRunning()) {
27 st.PauseTiming();
30 st.ResumeTiming();
/external/ltp/testcases/kernel/fs/ext4-new-features/ext4-nsec-timestamps/
H A Dext4_file_time.c35 struct stat st; local
42 if (stat(argv[1], &st) != 0) {
49 t = st.st_atime;
51 t = st.st_mtime;
53 t = st.st_ctime;
56 t = st.st_atim.tv_nsec;
58 t = st.st_mtim.tv_nsec;
60 t = st.st_ctim.tv_nsec;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_tess.c41 update_tess(struct st_context *st) argument
43 const struct gl_context *ctx = st->ctx;
44 struct pipe_context *pipe = st->pipe;
/external/clang/test/CodeGenCXX/
H A Dredefine_extname.cpp12 struct statvfs64 st; local
13 statvfs64(&st);
16 // CHECK: call i32 @statvfs(%struct.statvfs64* %st)
/external/elfutils/libdw/
H A Ddwarf_begin.c76 struct stat st; local
78 if (fstat (fd, &st) == 0 && ! S_ISREG (st.st_mode))
/external/libcxx/test/std/numerics/numarray/template.gslice.array/gslice.array.assign/
H A Dgslice_array.pass.cpp32 std::size_t st[] = {19, 4, 1}; local
36 strides(st, sizeof(st)/sizeof(st[0])))]
38 strides(st, sizeof(st)/sizeof(st[0])))];
H A Dvalarray.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] = v2;
/external/libcxx/test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
H A Daddition.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] += v2;
H A Dand.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] &= v2;
H A Ddivide.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] /= v2;
H A Dmodulo.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] %= v2;
H A Dmultiply.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] *= v2;
H A Dor.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] |= v2;
H A Dsubtraction.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] -= v2;

Completed in 604 milliseconds

1234567891011>>