HomeSort by relevance Sort by last modified time
    Searched defs:ls (Results 1 - 25 of 249) sorted by null

1 2 3 4 5 6 7 8 910

  /external/syslinux/gpxe/src/core/
bitops.c 7 int ls = 0; local
9 for ( ls = 0 ; value ; ls++ ) {
12 return ls;
  /external/syslinux/libfat/
cache.c 24 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 = malloc(sizeof(struct libfat_sector))
56 struct libfat_sector *ls, *lsnext; local
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
reloc-6a.s 5 ls: label
10 lw $4,%got_page(ls)($gp)
11 addiu $4,$4,%got_ofst(ls)
reloc-6b.s 5 ls: label
10 lw $4,%got_page(ls)($gp)
11 addiu $4,$4,%got_ofst(ls)
  /external/valgrind/memcheck/tests/
inits.c 12 static int ls; local
16 if (ls == 0xCAFEBABE) printf("3!\n");
  /external/annotation-tools/scene-lib/src/annotations/el/
TypeASTMapper.java 45 List<TypePathEntry> ls) {
46 if (ls.isEmpty()) {
49 return te.innerTypes.vivify(new InnerTypeLocation(ls));
69 List<TypePathEntry> ls = new ArrayList<TypePathEntry>(); local
70 traverse1(tastRoot, aslRoot, ls);
74 private void traverse1(N n, ATypeElement te, List<TypePathEntry> ls) {
79 // n, te, ls, getInnerType(te, ls));
80 map(n, getInnerType(te, ls));
83 ls.add(new TypePathEntry(TypePathEntryKind.TYPE_ARGUMENT, tai))
84 traverse1(getTypeArgument(n, tai), te, ls); local
109 traverse1(getTypeArgument(n, tai), te, ls); local
    [all...]
  /external/eigen/bench/btl/generic_bench/utils/
size_log.hh 36 float ls=0.0; local
44 ls = ls_min + float(i)*delta_ls ;
46 size=int(exp(ls));
  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 35 LocalSocket ls; local
40 ls = new LocalSocket();
42 ls.connect(new LocalSocketAddress("android.net.LocalSocketTest"));
47 ls.getOutputStream().write(42);
57 ls.setFileDescriptorsForSend(
60 ls.getOutputStream().write(42);
71 assertEquals(1, ls.getInputStream().read());
72 assertEquals(4, ls.getInputStream().available());
77 countRead = ls.getInputStream().read(buffer, 1, 15);
87 ls.getInputStream().read(buffer, 1, 16)
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSResourceResolver.java 13 package org.w3c.dom.ls;
24 * if the "LS" feature is supported.
35 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Load
LSSerializerFilter.java 13 package org.w3c.dom.ls;
42 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Load
LSException.java 13 package org.w3c.dom.ls;
26 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Load
  /external/clang/test/CodeGen/
no-opt-volatile-memcpy.c 12 struct s ls; local
13 ls = ls;
15 ls = gs;
18 // CHECK: %[[LS:.*]] = alloca %struct.s, align 4
19 // CHECK-NEXT: %[[ZERO:.*]] = bitcast %struct.s* %[[LS]] to i8*
20 // CHECK-NEXT: %[[ONE:.*]] = bitcast %struct.s* %[[LS]] to i8*
23 // CHECK-NEXT: %[[TWO:.*]] = bitcast %struct.s* %[[LS]] to i8*
  /external/e2fsprogs/lib/ext2fs/
lookup.c 38 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.found = 0
    [all...]
unlink.c 40 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...]
  /external/libxkbcommon/xkbcommon/test/
log.c 54 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/annotation-tools/annotation-file-utilities/src/annotator/scanner/
LambdaScanner.java 35 LambdaScanner ls = new LambdaScanner(tree); local
36 ls.scan(path, null);
37 return ls.index;
  /external/autotest/client/site_tests/firmware_TouchMTB/
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/clang/test/CodeGenCXX/
no-opt-volatile-memcpy.cpp 12 struct s ls; local
13 ls = ls;
15 ls = gs;
18 // CHECK: %[[LS:.*]] = alloca %struct.s, align 4
19 // CHECK-NEXT: %[[ZERO:.*]] = bitcast %struct.s* %[[LS]] to i8*
20 // CHECK-NEXT: %[[ONE:.*]] = bitcast %struct.s* %[[LS]] to i8*
23 // CHECK-NEXT: %[[TWO:.*]] = bitcast %struct.s* %[[LS]] to i8*
  /external/vogar/src/vogar/
Target.java 36 public abstract List<File> ls(File directory) throws FileNotFoundException; method in class:Target
  /frameworks/native/services/surfaceflinger/
LayerVector.cpp 46 uint32_t ls = lState.layerStack; local
48 if (ls != rs)
49 return (ls > rs) ? 1 : -1;
  /libcore/dom/src/test/java/org/w3c/domts/level3/ls/
TestBatik.java 12 package org.w3c.domts.level3.ls;
37 "org.w3c.domts.level3.ls.alltests");
TestDefaultLS.java 12 package org.w3c.domts.level3.ls;
43 "org.w3c.domts.level3.ls.alltests");
TestDefaultParser.java 14 package org.w3c.domts.level3.ls;
39 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.ls.alltests");
TestOracle.java 12 package org.w3c.domts.level3.ls;
39 * if class path does not contain dom3-ls.jar or
45 "org.w3c.domts.level3.ls.alltests");
TestXerces.java 14 package org.w3c.domts.level3.ls;
38 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.ls.alltests");

Completed in 268 milliseconds

1 2 3 4 5 6 7 8 910