Searched refs:st (Results 176 - 200 of 549) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dshared_memory_posix.cc44 struct stat st; local
45 if (fstat(handle.fd, &st) == 0) {
48 inode_ = st.st_ino;
272 struct stat st; local
273 if (fstat(mapped_file_, &st))
275 inode_ = st.st_ino;
/external/e2fsprogs/lib/ext2fs/
H A Dgetsize.c239 struct stat64 st;
240 if (fstat64(fd, &st) == 0)
242 struct stat st;
243 if (fstat(fd, &st) == 0)
245 if (S_ISREG(st.st_mode)) {
246 *retblocks = st.st_size / blocksize;
/external/elfutils/src/
H A Dranlib.c173 struct stat st; local
174 if (fstat (fd, &st) != 0)
287 || copy_content (arelf, newfd, rest_off, st.st_size - rest_off)
290 || fchmod (newfd, st.st_mode & ALLPERMS) != 0
292 || (({asm ("" :: "r" (fchown (newfd, st.st_uid, st.st_gid))); }),
/external/grub/lib/
H A Ddevice.c233 struct stat st; local
251 if (! fstat (fd, &st) && st.st_size)
252 geom->total_sectors = st.st_size >> SECTOR_BITS;
271 struct stat st; local
273 dev_devfsd_exists = stat ("/dev/.devfsd", &st) == 0;
459 struct stat st;
461 if (fstat (fileno (fp), &st))
466 if (S_ISBLK (st.st_mode)
467 && MAJOR (st
685 struct stat st; local
833 struct stat st; local
[all...]
/external/quake/quake/src/QW/server/
H A Dpr_exec.c365 dstatement_t *st; local
394 st = &pr_statements[s];
395 a = (eval_t *)&pr_globals[st->a];
396 b = (eval_t *)&pr_globals[st->b];
397 c = (eval_t *)&pr_globals[st->c];
406 PR_PrintStatement (st);
408 switch (st->op)
599 s += st->b - 1; // offset the s++
604 s += st->b - 1; // offset the s++
608 s += st
[all...]
/external/llvm/unittests/VMCore/
H A DTypeBuilderTest.cpp190 std::vector<Type*> st; local
191 st.push_back(TypeBuilder<int, cross>::get(Context));
192 st.push_back(TypeBuilder<int*, cross>::get(Context));
193 st.push_back(TypeBuilder<void*[], cross>::get(Context));
194 static StructType *const result = StructType::get(Context, st);
213 std::vector<Type*> st; local
214 st.push_back(TypeBuilder<types::i<32>, cross>::get(Context));
215 st.push_back(TypeBuilder<types::i<32>*, cross>::get(Context));
216 st.push_back(TypeBuilder<types::i<8>*[], cross>::get(Context));
217 static StructType *const result = StructType::get(Context, st);
[all...]
/external/openssl/crypto/aes/asm/
H A Daes-s390x.pl271 st $s0,0($out)
272 st $s1,4($out)
273 st $s2,8($out)
274 st $s3,12($out)
283 st${g} $ra,15*$SIZE_T($sp)
597 st $s0,0($out)
598 st $s1,4($out)
599 st $s2,8($out)
600 st $s3,12($out)
609 st
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c210 SYSTEMTIME st; local
220 st.wYear = (WORD)loctm->tm_year + 1900;
221 st.wMonth = (WORD)loctm->tm_mon + 1;
222 st.wDayOfWeek = (WORD)loctm->tm_wday;
223 st.wDay = (WORD)loctm->tm_mday;
224 st.wHour = (WORD)loctm->tm_hour;
225 st.wMinute = (WORD)loctm->tm_min;
226 st.wSecond = (WORD)loctm->tm_sec;
227 st.wMilliseconds = 0;
228 if (!SystemTimeToFileTime(&st,
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_screen.c470 char st[80]; local
482 sprintf(st, "%3d FPS", lastfps);
483 x = vid.width - strlen(st) * 8 - 8;
485 // Draw_TileClear(x, y, strlen(st) * 8, 8);
486 Draw_String(x, y, st);
844 char st[80]; local
933 strcpy(st, ctime(&now));
934 st[strlen(st) - 1] = 0;
935 SCR_DrawStringToSnap (st, newbu
[all...]
/external/javassist/src/main/javassist/compiler/
H A DCodeGen.java322 public void atStmnt(Stmnt st) throws CompileError { argument
323 if (st == null)
326 int op = st.getOperator();
328 ASTree expr = st.getLeft();
345 ASTList list = st;
354 atIfStmnt(st);
356 atWhileStmnt(st, op == WHILE);
358 atForStmnt(st);
360 atBreakStmnt(st, op == BREAK);
362 atReturnStmnt(st);
379 atIfStmnt(Stmnt st) argument
412 atWhileStmnt(Stmnt st, boolean notDo) argument
454 atForStmnt(Stmnt st) argument
499 atSwitchStmnt(Stmnt st) argument
572 atBreakStmnt(Stmnt st, boolean notCont) argument
588 atReturnStmnt(Stmnt st) argument
625 atThrowStmnt(Stmnt st) argument
637 atTryStmnt(Stmnt st) argument
641 atSyncStmnt(Stmnt st) argument
[all...]
/external/linux-tools-perf/util/
H A Dtrace-event-info.c314 struct stat st; local
332 ret = stat(format, &st);
350 ret = stat(format, &st);
391 struct stat st; local
426 ret = stat(sys, &st);
442 struct stat st; local
445 ret = stat(path, &st);
464 struct stat st; local
468 ret = stat(path, &st);
/external/qemu/android/utils/
H A Dpath.c231 struct stat st; local
233 CHECKED(ret, stat(path, &st));
237 return S_ISREG(st.st_mode);
246 struct stat st; local
248 CHECKED(ret, stat(path, &st));
252 return S_ISDIR(st.st_mode);
400 struct stat st;
402 CHECKED(ret, stat(path, &st));
404 *psize = (uint64_t) st.st_size;
/external/valgrind/main/exp-bbv/
H A Dbbv_main.c354 IRStmt *st; local
378 st = sbIn->stmts[i];
381 tl_assert(Ist_IMark == st->tag);
383 origAddr=st->Ist.IMark.addr;
422 st=sbIn->stmts[i];
424 if (st->tag == Ist_IMark) {
426 ourAddr = st->Ist.IMark.addr;
428 opcode_type=get_inst_type(st->Ist.IMark.len,ourAddr);
459 addStmtToIRSB( sbOut, st );
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc68 struct stat st; local
69 if (syscall(__NR_fstat, fd, &st))
72 struct stat64 st;
73 if (syscall(__NR_fstat64, fd, &st))
76 return (uptr)st.st_size;
H A Dsanitizer_mac.cc64 struct stat st; local
65 if (fstat(fd, &st))
67 return (uptr)st.st_size;
/external/mesa3d/src/glsl/
H A Dglsl_compiler.cpp79 struct stat st; local
87 if (fstat(fd, & st) == 0) {
88 text = (char *) hieralloc_size(ctx, st.st_size + 1);
92 st.st_size - total_read);
104 } while (total_read < st.st_size);
H A Dbuiltin_function.cpp38 struct _mesa_glsl_parse_state *st = local
41 st->language_version = 130;
42 st->symbols->language_version = 130;
43 st->ARB_texture_rectangle_enable = true;
44 st->EXT_texture_array_enable = true;
45 _mesa_glsl_initialize_types(st);
48 sh->symbols = st->symbols;
51 _mesa_glsl_read_ir(st, sh->ir, protos, true);
58 _mesa_glsl_read_ir(st, sh->ir, functions[i], false);
60 if (st
[all...]
/external/valgrind/main/coregrind/
H A Dm_stacks.c102 /* Find 'st' in the stacks_list and move it one step closer the the
105 static void move_Stack_one_step_forward ( Stack* st )
108 if (st == stacks)
110 vg_assert(st != NULL);
115 if (st0 == NULL || st0 == st) break;
120 vg_assert(st0 == st);
123 /* st0 points to st, st1 to its predecessor, and st2 to st1's
/external/valgrind/main/callgrind/
H A Dmain.c816 IRStmt* st; local
829 st = sbIn->stmts[i];
830 if (Ist_IMark == st->tag) {
833 instrAddr = (Addr)ULong_to_Ptr(st->Ist.IMark.addr);
834 instrLen = st->Ist.IMark.len;
840 if (Ist_Exit == st->tag) {
841 jumpDst = IRConst2Addr(st->Ist.Exit.dst);
909 IRStmt* st; local
944 st = sbIn->stmts[i];
945 CLG_ASSERT(Ist_IMark == st
[all...]
/external/chromium/chrome/browser/download/
H A Dbase_file.cc119 struct stat st;
124 bool stat_succeeded = (stat(new_path.value().c_str(), &st) == 0);
132 chmod(new_path.value().c_str(), st.st_mode);
/external/e2fsprogs/lib/blkid/
H A Dsave.c65 struct stat st; local
79 if (((ret = stat(filename, &st)) < 0 && errno != ENOENT) ||
93 if (ret == 0 && S_ISREG(st.st_mode)) {
/external/libppp/src/
H A Dtcp.c171 struct stat st; local
173 if (fstat(p->fd, &st) != -1 && (st.st_mode & S_IFSOCK)) {
/external/oprofile/libutil++/
H A Dfile_manip.cpp81 struct stat st; local
82 return !stat(dirname.c_str(), &st) && S_ISDIR(st.st_mode);
H A Dop_spu_bfd.cpp52 struct stat st; local
77 if (fstat(fd, &st)) {
83 file_size = st.st_size;
/external/valgrind/main/coregrind/m_syswrap/
H A Dpriv_types_n_macros.h304 static inline UWord getRES ( SyscallStatus* st ) {
305 vg_assert(st->what == SsComplete);
306 vg_assert(!sr_isError(st->sres));
307 return sr_Res(st->sres);
310 static inline UWord getRESHI ( SyscallStatus* st ) {
311 vg_assert(st->what == SsComplete);
312 vg_assert(!sr_isError(st->sres));
313 return sr_ResHI(st->sres);
316 static inline UWord getERR ( SyscallStatus* st ) {
317 vg_assert(st
[all...]

Completed in 1376 milliseconds

1234567891011>>