Searched defs:st (Results 1 - 25 of 697) 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.c40 print_struct_stat(struct tcb *tcp, const struct strace_stat *const st) argument
45 print_dev_t(st->dev);
46 tprintf(", st_ino=%llu, st_mode=", st->ino);
47 print_symbolic_mode_t(st->mode);
49 st->nlink, st->uid, st->gid);
50 tprintf(", st_blksize=%llu", st->blksize);
51 tprintf(", st_blocks=%llu", st->blocks);
54 print_symbolic_mode_t(st
[all...]
H A Dstat.c34 struct strace_stat st; local
36 if (fetch_struct_stat(tcp, addr, &st))
37 print_struct_stat(tcp, &st);
H A Dstat64.c34 struct strace_stat st; local
36 if (fetch_struct_stat64(tcp, addr, &st))
37 print_struct_stat(tcp, &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_cb_drawpixels.h44 st_destroy_drawpix(struct st_context *st);
47 st_make_drawpix_fragment_program(struct st_context *st,
52 st_make_drawpix_z_stencil_program(struct st_context *st,
64 st_destroy_drawpix(struct st_context *st) argument
H A Dst_cb_drawtex.h25 st_destroy_drawtex(struct st_context *st);
35 st_destroy_drawtex(struct st_context *st) argument
H A Dst_debug.c81 struct st_context *st = st_context(ctx); local
87 for (i = 0; i < st->vp->state.num_inputs; i++) {
88 printf(" Slot %d: VERT_ATTRIB_%d\n", i, st->vp->index_to_input[i]);
92 if (st->vp->variants)
93 tgsi_dump( st->vp->variants[0].tgsi.tokens, 0 );
94 if (st->vp->Base.Base.Parameters)
95 _mesa_print_parameter_list(st->vp->Base.Base.Parameters);
97 tgsi_dump( st->fp->variants[0].tgsi.tokens, 0 );
98 if (st->fp->Base.Base.Parameters)
99 _mesa_print_parameter_list(st
[all...]
/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;
H A Dxor.pass.cpp30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] ^= v2;

Completed in 1505 milliseconds

1234567891011>>