Searched defs:ls (Results 1 - 25 of 79) sorted by relevance

1234

/external/syslinux/gpxe/src/core/
H A Dbitops.c7 int ls = 0; local
9 for ( ls = 0 ; value ; ls++ ) {
12 return ls;
/external/valgrind/memcheck/tests/
H A Dinits.c12 static int ls; local
16 if (ls == 0xCAFEBABE) printf("3!\n");
/external/syslinux/libfat/
H A Dcache.c24 struct libfat_sector *ls; local
26 for (ls = fs->sectors; ls; ls = ls->next) {
27 if (ls->n == n)
28 return ls->data; /* Found in cache */
32 ls = malloc(sizeof(struct libfat_sector));
33 if (!ls) {
35 ls
56 struct libfat_sector *ls, *lsnext; local
[all...]
/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/e2fsprogs/lib/ext2fs/
H A Dlookup.c38 struct lookup_struct *ls = (struct lookup_struct *) priv_data; local
40 if (ls->len != ext2fs_dirent_name_len(dirent))
42 if (strncmp(ls->name, dirent->name, ext2fs_dirent_name_len(dirent)))
44 *ls->inode = dirent->inode;
45 ls->found++;
54 struct lookup_struct ls; local
58 ls.name = name;
59 ls.len = namelen;
60 ls.inode = inode;
61 ls
[all...]
H A Dunlink.c40 struct link_struct *ls = (struct link_struct *) priv_data; local
43 prev = ls->prev;
44 ls->prev = dirent;
46 if (ls->name) {
47 if (ext2fs_dirent_name_len(dirent) != ls->namelen)
49 if (strncmp(ls->name, dirent->name, ext2fs_dirent_name_len(dirent)))
52 if (ls->inode) {
53 if (dirent->inode != ls->inode)
64 ls->done++;
76 struct link_struct ls; local
[all...]
H A Dlink.c40 struct link_struct *ls = (struct link_struct *) priv_data; local
47 if (ls->done)
50 rec_len = EXT2_DIR_REC_LEN(ls->namelen);
52 ls->err = ext2fs_get_rec_len(ls->fs, dirent, &curr_rec_len);
53 if (ls->err)
56 if (ext2fs_has_feature_metadata_csum(ls->fs->super))
67 ls->err = ext2fs_set_rec_len(ls->fs, curr_rec_len, dirent);
68 if (ls
158 struct link_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/libxkbcommon/xkbcommon/test/
H A Dlog.c54 darray_char *ls = xkb_context_get_user_data(ctx); local
55 assert(ls);
60 darray_append_string(*ls, log_level_to_string(level));
61 darray_append_lit(*ls, ": ");
62 darray_append_string(*ls, s);
/external/syslinux/gpxe/src/hci/mucurses/
H A Dedging.c31 * @v ls left side
41 int wborder ( WINDOW *win, chtype ls, chtype rs, argument
56 _wputch(win,ls,WRAP);
/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/vogar/src/vogar/android/
H A DDeviceFilesystem.java82 public List<File> ls(File dir) throws FileNotFoundException { method in class:DeviceFilesystem
85 args.add("ls");
H A DAdbTarget.java83 .args("adb", "shell", "ls", pathArgument)
110 .args("adb", "shell", "ls", pathArgument)
135 @Override public List<File> ls(File directory) throws FileNotFoundException { method in class:AdbTarget
136 return deviceFilesystem.ls(directory);
/external/annotation-tools/scene-lib/src/annotations/el/
H A DTypeASTMapper.java45 List<TypePathEntry> ls) {
46 if (ls.isEmpty()) {
49 return te.innerTypes.vivify(new InnerTypeLocation(ls));
69 List<TypePathEntry> ls = new ArrayList<TypePathEntry>();
70 traverse1(tastRoot, aslRoot, ls);
74 private void traverse1(N n, ATypeElement te, List<TypePathEntry> ls) { argument
79 // n, te, ls, getInnerType(te, ls));
80 map(n, getInnerType(te, ls));
83 ls
44 getInnerType(ATypeElement te, List<TypePathEntry> ls) argument
[all...]
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dcros_gs.py62 self.ls_cmd = '{0} {1} {2}/%s'.format(_cmd_prefix, 'ls', bucket)
69 def ls(self, files=''): member in class:CrosGs
70 """ls the files in the selected bucket."""
/external/vogar/src/vogar/
H A DLocalTarget.java66 @Override public List<File> ls(File directory) throws FileNotFoundException { method in class:LocalTarget
H A DSshTarget.java105 @Override public List<File> ls(File directory) throws FileNotFoundException { method in class:SshTarget
106 return deviceFilesystem.ls(directory);
H A DTarget.java36 public abstract List<File> ls(File directory) throws FileNotFoundException; method in class:Target
/external/autotest/server/site_tests/enterprise_CFM_HuddlyUpdater/
H A Denterprise_CFM_HuddlyUpdater.py53 def ls(self): member in class:enterprise_CFM_HuddlyUpdater
54 """ls tracks the directories of interest."""
55 cmd = 'ls -l /lib/firmware/ | grep huddly'
160 self.ls()
165 self.ls()
167 self.ls()
169 self.ls()
/external/clang/test/Sema/
H A Dformat-strings-scanf.c47 scanf("%ls", ws); // no-warning
84 void test_scanlist(int *ip, char *sp, wchar_t *ls) { argument
87 scanf("%l[xyx]", ls); // no-warning
88 scanf("%ll[xyx]", ls); // expected-warning {{length modifier 'll' results in undefined behavior or no effect with '[' conversion specifier}}
/external/e2fsprogs/debugfs/
H A Dls.c2 * ls.c --- list directories
101 struct list_dir_struct *ls = (struct list_dir_struct *) private; variable in typeref:struct:list_dir_struct
106 options = ls->options;
107 if (ls->state < 2) {
108 ls->state++;
121 if (debugfs_read_inode(ino, &inode, "ls"))
125 fprintf(ls->f,"/%u/%06o/%d/%d/%*s/", ino, inode.i_mode,
128 fprintf(ls->f, "/");
130 fprintf(ls->f, "%lld/", EXT2_I_SIZE(&inode));
131 fprintf(ls
200 struct list_dir_struct ls; local
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dloop_controls.cpp191 loop_variable_state *const ls = this->state->get(ir); local
196 if (ls == NULL) {
197 assert(ls != NULL);
201 if (ls->limiting_terminator != NULL) {
205 int iterations = ls->limiting_terminator->iterations;
220 foreach_in_list(loop_terminator, t, &ls->terminators) {
224 if (t != ls->limiting_terminator) {
227 assert(ls->num_loop_jumps > 0);
228 ls->num_loop_jumps--;
239 set_loop_controls(exec_list *instructions, loop_state *ls) argument
[all...]
H A Dloop_unroll.cpp71 loop_unroll_count(exec_list *list, loop_variable_state *ls, argument
73 : ls(ls), options(options)
127 loop_variable *lv = ls->get(ir->array_index->variable_referenced());
134 if (int(array->type->length) == ls->limiting_terminator->iterations)
167 loop_variable_state *ls; member in class:loop_unroll_count
307 loop_variable_state *const ls = this->state->get(ir); local
313 if (ls == NULL) {
314 assert(ls != NULL);
318 if (ls
446 unroll_loops(exec_list *instructions, loop_state *ls, const struct gl_shader_compiler_options *options) argument
[all...]
/external/toybox/lib/
H A Dlinestack.c46 struct linestack ls; member in struct:__anon26934
48 } ls; local
50 ls.ls.len = ls.ls.max = 1;
51 ls.ls.idx[0].ptr = line;
52 ls.ls
64 struct linestack *ls; local
[all...]

Completed in 636 milliseconds

1234