HomeSort by relevance Sort by last modified time
    Searched defs:st (Results 26 - 50 of 1469) sorted by null

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fdopen.c 85 struct stat st; local
86 if (fstat(fd, &st) == -1) {
89 if (!S_ISREG(st.st_mode)) {
fopen.c 74 struct stat st; local
75 if (fstat(f, &st) == -1) {
81 if (!S_ISREG(st.st_mode)) {
makebuf.c 107 struct stat st; local
116 if (fp->_file < 0 || fstat(fp->_file, &st) < 0) {
123 *couldbetty = S_ISCHR(st.st_mode);
124 if (st.st_blksize == 0) {
134 *bufsize = st.st_blksize;
135 fp->_blksize = st.st_blksize;
136 return ((st.st_mode & S_IFMT) == S_IFREG && fp->_seek == __sseek ?
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursionCyclesMessage.java 30 import org.stringtemplate.v4.ST;
47 ST st = getMessageTemplate(); local
48 st.add("listOfCycles", cycles);
49 return super.toString(st);
ToolMessage.java 30 import org.stringtemplate.v4.ST;
62 ST st = getMessageTemplate(); local
64 st.add("arg", arg);
67 st.add("arg2", arg2);
70 st.add("exception", e);
71 st.add("stackTrace", e.getStackTrace());
73 return super.toString(st);
  /external/clang/test/CodeGenCXX/
redefine_extname.cpp 12 struct statvfs64 st; local
13 statvfs64(&st);
16 // CHECK: call i32 @statvfs(%struct.statvfs64* %st)
  /external/elfutils/libelf/
elf_update.c 49 struct stat st; local
50 if (unlikely (fstat (elf->fildes, &st) != 0))
134 && unlikely (st.st_mode & (S_ISUID | S_ISGID))
136 && unlikely (fchmod (elf->fildes, st.st_mode) != 0))
  /external/fio/lib/
mountcheck.c 41 struct statfs *st; local
44 ret = getmntinfo(&st, MNT_NOWAIT);
49 if (!strcmp(st[i].f_mntfromname, dev))
62 struct statvfs *st; local
65 ret = getmntinfo(&st, MNT_NOWAIT);
70 if (!strcmp(st[i].f_mntfromname, dev))
  /external/fio/oslib/
linux-dev-lookup.c 14 struct stat st; local
29 if (lstat(full_path, &st) == -1) {
34 if (S_ISDIR(st.st_mode)) {
43 if (!S_ISBLK(st.st_mode))
57 if (maj == major(st.st_rdev) && min == minor(st.st_rdev)) {
  /external/libcxx/test/std/numerics/numarray/template.gslice.array/gslice.array.assign/
gslice_array.pass.cpp 32 std::size_t st[] = {19, 4, 1}; local
36 strides(st, sizeof(st)/sizeof(st[0])))]
38 strides(st, sizeof(st)/sizeof(st[0])))];
valarray.pass.cpp 30 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/
addition.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] += v2;
and.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] &= v2;
divide.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] /= v2;
modulo.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] %= v2;
multiply.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] *= v2;
or.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] |= v2;
subtraction.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] -= v2;
xor.pass.cpp 30 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.fill/
assign_value.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
31 strides(st, sizeof(st)/sizeof(st[0])))] = 51;
  /external/libcxx/test/std/numerics/numarray/template.valarray/valarray.assign/
gslice_array_assign.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
32 strides(st, sizeof(st)/sizeof(st[0])))];
  /external/libcxx/test/std/numerics/numarray/template.valarray/valarray.cons/
gslice_array.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
31 strides(st, sizeof(st)/sizeof(st[0])))]);
  /external/libcxx/test/std/numerics/numarray/template.valarray/valarray.sub/
gslice_const.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] = v2;
gslice_non_const.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
31 strides(st, sizeof(st)/sizeof(st[0])))]);
  /external/ltp/testcases/kernel/device-drivers/base/user_base/
user_tbase.c 51 struct stat st; local
69 if (!(st.st_mode & S_IFDIR)) {
83 rc = stat("/dev/tbase", &st);
101 if ((!(st.st_mode & S_IFCHR)) || (st.st_rdev != devt)) {

Completed in 6686 milliseconds

12 3 4 5 6 7 8 91011>>