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

123456789

/external/e2fsprogs/lib/ext2fs/
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 Dlink.c39 struct link_struct *ls = (struct link_struct *) priv_data; local
44 rec_len = EXT2_DIR_REC_LEN(ls->namelen);
46 ls->err = ext2fs_get_rec_len(ls->fs, dirent, &curr_rec_len);
47 if (ls->err)
59 ls->err = ext2fs_set_rec_len(ls->fs, curr_rec_len, dirent);
60 if (ls->err)
75 ls->err = ext2fs_set_rec_len(ls
115 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/valgrind/main/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
76 if (ls->options & PARSE_OPT) {
78 fprintf(ls->f,"/%u/%06o/%d/%d/%s/",ino,inode.i_mode,inode.i_uid, inode.i_gid,name);
80 fprintf(ls->f, "/");
82 fprintf(ls->f, "%lld/", inode.i_size | ((__u64)inode.i_size_high << 32));
83 fprintf(ls->f, "\n");
85 else if (ls->options & LONG_OPT) {
99 fprintf(ls->f, "%c%6u%c %6o (%d) %5d %5d ", lbr, ino, rbr,
103 fprintf(ls
129 struct list_dir_struct ls; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnTextureCoords.cpp56 float ls = 3.0f * classification.d2 - t1; local
60 float ltMinusLs = lt - ls;
62 result.klmCoordinates[0] = FloatPoint3D(ls * ms,
63 ls * ls * ls,
65 result.klmCoordinates[1] = FloatPoint3D(OneThird * (3.0f * ls * ms - ls * mt - lt * ms),
66 ls * ls * (l
81 float ls = classification.d2 - t1; local
122 float ls = classification.d3; local
[all...]
/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
H A DEdge273 $TC qdisc ls dev $INDEV
75 $TC class ls dev $INDEV
77 $TC filter ls dev $INDEV parent ffff:
80 $TC qdisc ls $EGDEV
82 $TC class ls $EGDEV
84 $TC filter ls $EGDEV parent 1:0
H A DEdge31-cb-chains118 $TC qdisc ls dev $INDEV
120 $TC class ls dev $INDEV
122 $TC filter ls dev $INDEV parent ffff:
125 $TC qdisc ls $EGDEV
127 $TC class ls $EGDEV
129 $TC filter ls $EGDEV parent 1:0
H A DEdge31-ca-u32156 $TC qdisc ls dev $INDEV
158 $TC class ls dev $INDEV
160 $TC filter ls dev $INDEV parent ffff:
163 $TC qdisc ls $EGDEV
165 $TC class ls $EGDEV
167 $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/wpa_supplicant_8/hostapd/src/eap_peer/
H A DMakefile8 if ls *.so >/dev/null 2>&1; then \
/external/wpa_supplicant_8/src/eap_peer/
H A DMakefile8 if ls *.so >/dev/null 2>&1; then \
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A DMakefile8 if ls *.so >/dev/null 2>&1; then \
/external/grub/stage2/
H A Dsize_test30 set dummy `ls -l $file`
/external/mesa3d/src/glsl/
H A Dloop_analysis.cpp54 loop_variable_state *ls = new(this->mem_ctx) loop_variable_state; local
55 hash_table_insert(this->ht, ls, ir);
57 return ls;
143 loop_variable_state *const ls = local
146 ls->num_loop_jumps++;
160 loop_variable_state *const ls = local
164 loop_variable *lv = ls->get(var);
167 lv = ls->insert(var);
197 loop_variable_state *ls = this->loops->insert(ir); local
198 this->state.push_head(ls);
206 loop_variable_state *const ls = local
[all...]
H A Dloop_unroll.cpp57 loop_variable_state *const ls = this->state->get(ir); local
63 if (ls == NULL) {
64 assert(ls != NULL);
68 iterations = ls->max_iterations;
81 if (ls->num_loop_jumps > 1)
83 else if (ls->num_loop_jumps) {
112 * Note that since ls->num_loop_jumps is <= 1, it is impossible
207 unroll_loops(exec_list *instructions, loop_state *ls, unsigned max_iterations) argument
209 loop_unroll_visitor v(ls, max_iterations);
H A Dloop_controls.cpp174 loop_variable_state *const ls = this->state->get(ir); local
179 if (ls == NULL) {
180 assert(ls != NULL);
188 int max_iterations = ls->max_iterations;
196 foreach_list(node, &ls->terminators) {
240 foreach_list(iv_node, &ls->induction_variables) {
267 assert(ls->num_loop_jumps > 0);
268 ls->num_loop_jumps--;
290 ls->max_iterations = max_iterations;
297 set_loop_controls(exec_list *instructions, loop_state *ls) argument
[all...]
/external/e2fsprogs/tests/
H A Dtest_script.in21 TESTS=`ls -d $SRCDIR/[a-zA-Z]_* | $EGREP -v "\.failed|\.new"`
52 if [ -z "`ls $test_dir`" ]; then
74 num_ok=`ls *.ok 2>/dev/null | wc -l`
75 num_failed=`ls *.failed 2>/dev/null | wc -l`
/external/openssh/regress/
H A Ddynamic-forward.sh8 DATA=/bin/ls${EXEEXT}
46 somehost cat $DATA > $OBJ/ls.copy
47 test -f $OBJ/ls.copy || fail "failed copy $DATA"
48 cmp $DATA $OBJ/ls.copy || fail "corrupted copy of $DATA"
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A DMakefile9 if ls *.so >/dev/null 2>&1; then \
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DDOM3Serializer.java28 import org.w3c.dom.ls.LSSerializerFilter;
72 * // org.w3c.dom.ls.DOMImplementationLS
73 * // org.w3c.dom.ls.DOMImplementationLS
74 * // org.w3c.dom.ls.LSSerializer
89 * org.w3c.dom.ls.DOMImplementationLS impl =
90 * (org.w3c.dom.ls.DOMImplementationLS)
95 * org.w3c.dom.ls.LSSerializer writer = impl.createLSSerializer();
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DDHParameterSpecTest.java48 int[] ls = {Integer.MIN_VALUE, 0, 1, Integer.MAX_VALUE};
59 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i], ls[i]);
68 dhps.getL(), ls[i]);
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestSerialization.java84 List<Object> ls; field in class:TestSerialization.TestSerializationMessage
109 ls = new ArrayList<Object>();
110 ls.add("hello");
111 ls.add(new SomeObject(-22));
135 System.out.println(cm.ls);
/external/libffi/testsuite/
H A Drun-all-tests34 newProg=`/bin/ls -ld "${prog}"`
93 testFiles=`/bin/ls libffi.call/*.c`
96 ls "$libDir"

Completed in 379 milliseconds

123456789