Searched refs:st (Results 1 - 25 of 29) sorted by relevance

12

/bionic/libc/unistd/
H A Dftok.c34 struct stat st; local
36 if ( lstat(path, &st) < 0 )
39 return (key_t)( (st.st_ino & 0xffff) | ((st.st_dev & 0xff) << 16) | ((id & 255) << 24) );
/bionic/libm/i387/
H A Ds_tan.S46 fstp %st(0)
49 fadd %st(0)
50 fxch %st(1)
55 fstp %st(1)
57 fstp %st(0)
H A Ds_cos.S48 fadd %st(0)
49 fxch %st(1)
54 fstp %st(1)
H A Ds_sin.S48 fadd %st(0)
49 fxch %st(1)
54 fstp %st(1)
H A De_scalb.S44 fstp %st(1)
H A Ds_logb.S43 fstp %st
H A Ds_logbf.S14 fstp %st
H A Ds_scalbn.S44 fstp %st(1)
H A Ds_significand.S43 fstp %st(1)
H A Ds_significandf.S14 fstp %st(1)
H A De_fmod.S47 fstp %st(1)
H A De_remainder.S47 fstp %st(1)
H A De_remainderf.S18 fstp %st(1)
H A De_exp.S69 fst %st(1)
71 fst %st(2)
77 fstp %st(1)
H A Ds_scalbnf.S15 fstp %st(1) /* bug fix for fp stack overflow */
H A Ds_scalbnl.S15 fstp %st(1)
/bionic/libc/stdio/
H A Dremove.c42 struct stat st; local
44 if (lstat(file, &st) < 0)
46 if (S_ISDIR(st.st_mode))
H A Dmakebuf.c83 struct stat st; local
85 if (fp->_file < 0 || fstat(fp->_file, &st) < 0) {
92 *couldbetty = S_ISCHR(st.st_mode);
93 if (st.st_blksize == 0) {
103 *bufsize = st.st_blksize;
104 fp->_blksize = st.st_blksize;
105 return ((st.st_mode & S_IFMT) == S_IFREG && fp->_seek == __sseek ?
H A Dfseek.c54 struct stat st; local
130 fp->_file < 0 || fstat(fp->_file, &st) ||
131 (st.st_mode & S_IFMT) != S_IFREG) {
135 fp->_blksize = st.st_blksize;
146 if (fstat(fp->_file, &st))
148 target = st.st_size + offset;
/bionic/libm/amd64/
H A Ds_scalbn.S36 fstp %st(1)
H A Ds_scalbnf.S36 fstp %st(1)
H A Ds_scalbnl.S15 fstp %st(1)
/bionic/libc/kernel/arch-mips/asm/
H A Dcmpxchg.h24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
/bionic/libc/upstream-netbsd/libc/regex/
H A Dengine.c117 states st; /* current states */ member in struct:match
145 static void print(struct match *m, char *caption, states st, int ch, FILE *d);
231 SETUP(m->st);
779 states st = m->st; local
793 CLEAR(st);
794 SET1(st, startst);
795 st = step(m->g, startst, stopst, st, NOTHING, st);
874 states st = m->st; local
1091 print( struct match *m, char *caption, states st, int ch, FILE *d) argument
[all...]
/bionic/libc/tools/zoneinfo/
H A DZoneCompactor.java94 StringTokenizer st = new StringTokenizer(s);
95 st.nextToken();
96 String to = st.nextToken();
97 String from = st.nextToken();

Completed in 129 milliseconds

12