Searched refs:ls (Results 1 - 25 of 370) sorted by relevance

1234567891011>>

/external/strace/tests/
H A Dstrace-f.test9 check_prog ls
10 run_strace -f $time ls > /dev/null
H A Dqual_syscall.test7 check_prog ls
8 run_strace -e execve ls
17 run_strace -e trace=process ls
/external/clang/test/CodeGen/
H A Dno-opt-volatile-memcpy.c12 struct s ls; local
13 ls = ls;
15 ls = gs;
/external/clang/test/CodeGenCXX/
H A Dno-opt-volatile-memcpy.cpp12 struct s ls; local
13 ls = ls;
15 ls = gs;
/external/toybox/toys/pending/
H A Dvi.c23 struct linestack *ls;
34 void linestack_show(struct linestack *ls, struct linestack_show *lss) argument
43 if (!(TT.ls = linestack_load(*toys.optargs)))
44 TT.ls = xzalloc(sizeof(struct linestack));
46 for (i=0; i<TT.ls->len; i++)
47 printf("%.*s\n", (int)TT.ls->idx[i].len, (char *)TT.ls->idx[i].ptr);
/external/e2fsprogs/lib/ext2fs/
H A Dlink.c39 struct link_struct *ls = (struct link_struct *) priv_data; local
44 if (ls->done)
47 rec_len = EXT2_DIR_REC_LEN(ls->namelen);
49 ls->err = ext2fs_get_rec_len(ls->fs, dirent, &curr_rec_len);
50 if (ls->err)
62 ls->err = ext2fs_set_rec_len(ls->fs, curr_rec_len, dirent);
63 if (ls->err)
78 ls
118 struct link_struct ls; local
[all...]
H A Dunlink.c39 struct link_struct *ls = (struct link_struct *) priv_data; local
42 prev = ls->prev;
43 ls->prev = dirent;
45 if (ls->name) {
46 if ((dirent->name_len & 0xFF) != ls->namelen)
48 if (strncmp(ls->name, dirent->name, dirent->name_len & 0xFF))
51 if (ls->inode) {
52 if (dirent->inode != ls->inode)
63 ls->done++;
75 struct link_struct ls; local
[all...]
H A Dlookup.c37 struct lookup_struct *ls = (struct lookup_struct *) priv_data; local
39 if (ls->len != (dirent->name_len & 0xFF))
41 if (strncmp(ls->name, dirent->name, (dirent->name_len & 0xFF)))
43 *ls->inode = dirent->inode;
44 ls->found++;
53 struct lookup_struct ls; local
57 ls.name = name;
58 ls.len = namelen;
59 ls.inode = inode;
60 ls
[all...]
/external/e2fsprogs/tests/
H A Dtest_post4 num_ok=`ls *.ok 2>/dev/null | wc -l`
5 num_failed=`ls *.failed 2>/dev/null | wc -l`
12 for fname in $(ls *.failed); do
H A Dtest_script.in17 TESTS=`ls -d $SRCDIR/[a-zA-Z]_*`
/external/autotest/client/deps/glbench/
H A Dupdate_glbench_image_filelists.sh4 ls *.png | sort > ../../glbench/glbench_reference_images.txt
5 ls *.png | sort > index.html
12 ls */*.png 2>/dev/null | sort > ../../glbench/${images}.txt
13 ls */*.png 2>/dev/null | sort > index.html
/external/valgrind/memcheck/tests/
H A Dinits.c12 static int ls; local
16 if (ls == 0xCAFEBABE) printf("3!\n");
/external/e2fsprogs/debugfs/
H A Dls.c2 * ls.c --- list directories
61 struct list_dir_struct *ls = (struct list_dir_struct *) private; variable in typeref:struct:list_dir_struct
75 if (ls->options & PARSE_OPT) {
81 fprintf(ls->f,"/%u/%06o/%d/%d/%s/",ino,inode.i_mode,inode.i_uid, inode.i_gid,name);
83 fprintf(ls->f, "/");
85 fprintf(ls->f, "%lld/", EXT2_I_SIZE(&inode));
86 fprintf(ls->f, "\n");
87 } else if (ls->options & LONG_OPT) {
101 fprintf(ls->f, "%c%6u%c %6o (%d) %5d %5d ", lbr, ino, rbr,
105 fprintf(ls
130 struct list_dir_struct ls; local
[all...]
/external/eigen/bench/btl/generic_bench/utils/
H A Dsize_log.hh36 float ls=0.0; local
44 ls = ls_min + float(i)*delta_ls ;
46 size=int(exp(ls));
/external/strace/
H A Dgit-set-file-times10 my %ls;
15 open FH, 'git ls-files -z|' or die $!;
18 $ls{$_} = $_;
29 my @files = delete @ls{split(/\0/, $_)};
35 last unless %ls;
/external/toybox/lib/
H A Dlinestack.c42 struct linestack ls; member in struct:__anon16788
44 } ls; local
46 ls.ls.len = ls.ls.max = 1;
47 ls.ls.idx[0].ptr = line;
48 ls.ls
60 struct linestack *ls; local
[all...]
/external/libvpx/libvpx/test/
H A Dexamples.sh15 example_tests=$(ls $(dirname $0)/*.sh)
/external/iproute2/examples/diffserv/
H A DEdge157 $TC qdisc ls dev $INDEV
59 $TC class ls dev $INDEV
61 $TC filter ls dev $INDEV parent 1:0
64 $TC qdisc ls $EGDEV
66 $TC class ls $EGDEV
68 $TC filter ls $EGDEV parent 1:0
/external/iproute2/examples/
H A DSYN-DoS.rate.limit42 $TC qdisc ls dev $INDEV
44 $TC class ls dev $INDEV
46 $TC filter ls dev $INDEV parent ffff:
/external/mesa3d/src/glsl/
H A Dloop_analysis.cpp55 loop_variable_state *ls = new(this->mem_ctx) loop_variable_state; local
57 hash_table_insert(this->ht, ls, ir);
60 return ls;
148 loop_variable_state *const ls = local
151 ls->num_loop_jumps++;
164 loop_variable_state *const ls = local
167 ls->contains_calls = true;
180 loop_variable_state *const ls = local
184 loop_variable *lv = ls->get(var);
187 lv = ls
217 loop_variable_state *ls = this->loops->insert(ir); local
226 loop_variable_state *const ls = local
[all...]
H A Dloop_unroll.cpp89 loop_variable_state *const ls = this->state->get(ir); local
95 if (ls == NULL) {
96 assert(ls != NULL);
100 iterations = ls->max_iterations;
120 if (ls->num_loop_jumps > 1)
122 else if (ls->num_loop_jumps) {
151 * Note that since ls->num_loop_jumps is <= 1, it is impossible
246 unroll_loops(exec_list *instructions, loop_state *ls, unsigned max_iterations) argument
248 loop_unroll_visitor v(ls, max_iterations);
/external/vogar/bin/
H A Dvogar11 latest_android_sdk=`ls -1 ${android_sdks_dir} | sort -n | tail -1`
19 latest_android_platform=`ls -1 ${android_platforms_dir} | sort -n | tail -1`
/external/curl/lib/
H A Dfirefox-db2pem.sh27 db=`ls -1d $HOME/.mozilla/firefox/*default*`
/external/libunwind/scripts/
H A Dmake-L-files14 for gname in `ls G*.c G*.cxx G*.S 2>/dev/null`; do
/external/skia/platform_tools/android/bin/
H A Dandroid_gdb_native48 GDB_COMMAND=$(command ls "$ANDROID_TOOLCHAIN"/*-gdb | head -n1)

Completed in 1425 milliseconds

1234567891011>>