/external/valgrind/memcheck/tests/ |
H A D | inits.c | 12 static int ls; local 16 if (ls == 0xCAFEBABE) printf("3!\n");
|
/external/v8/tools/gyp/test/mac/ |
H A D | gyptest-framework.py | 21 def ls(path): function 68 if set(ls(test.built_file_path('Test Framework.framework',
|
H A D | gyptest-app.py | 37 def ls(path): function 110 if set(ls(test.built_file_path('Test App Gyp.app', chdir='app-bundle'))) != \
|
H A D | gyptest-app-assets-catalog.py | 28 def ls(path): function 113 if set(ls(test.built_file_path(test_app_path, chdir='app-bundle'))) != \
|
/external/clang/test/CodeGen/ |
H A D | no-opt-volatile-memcpy.c | 12 struct s ls; local 13 ls = ls; 15 ls = gs;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
H A D | cfadmin | 42 def ls(cf): function
|
H A D | cwutil | 23 def ls(namespace=None): function 38 metric_name: The name of the metric to track, pulled from `ls`
|
H A D | route53 | 57 def ls(conn): function
|
/external/clang/test/CodeGenCXX/ |
H A D | no-opt-volatile-memcpy.cpp | 12 struct s ls; local 13 ls = ls; 15 ls = gs;
|
/external/e2fsprogs/lib/ext2fs/ |
H A D | lookup.c | 37 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...] |
H A D | unlink.c | 39 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 D | link.c | 39 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...] |
/external/eigen/bench/btl/generic_bench/utils/ |
H A D | size_log.hh | 36 float ls=0.0; local 44 ls = ls_min + float(i)*delta_ls ; 46 size=int(exp(ls));
|
/external/toybox/toys/pending/ |
H A D | vi.c | 23 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 D | DeviceFilesystem.java | 82 public List<File> ls(File dir) throws FileNotFoundException { method in class:DeviceFilesystem 85 args.add("ls");
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
H A D | cros_gs.py | 62 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/e2fsprogs/debugfs/ |
H A D | ls.c | 2 * 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/mesa3d/src/glsl/ |
H A D | loop_unroll.cpp | 89 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/v8/test/webkit/ |
H A D | ToNumber.js | 37 var ls = String.fromCharCode(0x2028); variable 105 shouldBe("+ls", "0"); 129 shouldBe("+(ls + '1')", "1"); 153 shouldBe("+('1' + ls)", "1"); 177 shouldBe("+('1' + ls + '1')", "NaN");
|
H A D | parseFloat.js | 35 var ls = String.fromCharCode(0x2028); variable 81 shouldBe("parseFloat(ls + '1')", "1");
|
/external/vogar/src/vogar/ |
H A D | LocalTarget.java | 66 @Override public List<File> ls(File directory) throws FileNotFoundException { method in class:LocalTarget
|
H A D | SshTarget.java | 105 @Override public List<File> ls(File directory) throws FileNotFoundException { method in class:SshTarget 106 return deviceFilesystem.ls(directory);
|
/external/chromium-trace/catapult/third_party/Paste/paste/debug/ |
H A D | doctest_webapp.py | 77 def ls(dir=None, recurse=False, indent=0): function 90 ls(dir=full, recurse=True, indent=indent+2)
|
/external/clang/test/Sema/ |
H A D | format-strings-scanf.c | 47 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/jmonkeyengine/engine/src/core/com/jme3/math/ |
H A D | LineSegment.java | 65 public LineSegment(LineSegment ls) {
argument 66 this.origin = new Vector3f(ls.getOrigin());
67 this.direction = new Vector3f(ls.getDirection());
68 this.extent = ls.getExtent();
92 public void set(LineSegment ls) {
argument 93 this.origin = new Vector3f(ls.getOrigin());
94 this.direction = new Vector3f(ls.getDirection());
95 this.extent = ls.getExtent();
102 public float distance(LineSegment ls) {
argument 103 return FastMath.sqrt(distanceSquared(ls));
[all...] |