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

1 2 3

  /external/chromium_org/tools/gyp/test/mac/
gyptest-framework.py 17 def ls(path): function
64 if set(ls(test.built_file_path('Test Framework.framework',
gyptest-app.py 25 def ls(path): function
97 if set(ls(test.built_file_path('Test App Gyp.app', chdir='app-bundle'))) != \
  /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));
  /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 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.found = 0
    [all...]
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...]
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->err = ext2fs_set_rec_len(ls->fs, min_rec_len, dirent)
118 struct link_struct ls; local
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHParameterSpecTest.java 48 int[] ls = { Integer.MIN_VALUE, 0, 1, Integer.MAX_VALUE }; local
59 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i], ls[i]);
68 dhps.getL(), ls[i]);
  /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/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 151 $ls = new LicenseServerClient(); variable
152 echo $ls->checkLicense($_REQUEST['user_id']);
  /external/chromium_org/net/third_party/nss/ssl/
ssltrace.c 149 unsigned ls = LEN(bp+5); local
158 PrintBuf(ss, "session-id", bp+9+lcs, ls);
159 PrintBuf(ss, "challenge", bp+9+lcs+ls, lc);
  /external/chromium_org/third_party/mesa/src/src/glsl/
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)
248 loop_unroll_visitor v(ls, max_iterations);
loop_analysis.cpp 55 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->insert(var)
217 loop_variable_state *ls = this->loops->insert(ir); local
226 loop_variable_state *const ls = local
    [all...]
loop_controls.cpp 174 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)
    [all...]
glsl_parser_extras.cpp 1065 loop_state *ls = analyze_loop_variables(ir); local
1066 if (ls->loop_found) {
1067 progress = set_loop_controls(ir, ls) || progress;
1068 progress = unroll_loops(ir, ls, max_unroll_iterations) || progress;
1070 delete ls;
  /external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
lightsymbols.cc 31 LightSymbol* ls = GetCurrentFrame(); local
32 if (ls == 0) {
35 return ls->GetCallStackCore(sz, len, separator);
119 const LightSymbol* ls = this; local
122 while (ls != NULL && len > 1000) {
123 sprintf(szOut, "%s, %s:%i%s", ls->sym, fileNames[ls->fileId], ls->lineNumber, separator);
128 ls = ls->parentFrame;
    [all...]
  /external/chromium_org/v8/test/webkit/
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");
parseFloat.js 35 var ls = String.fromCharCode(0x2028); variable
81 shouldBe("parseFloat(ls + '1')", "1");
  /external/e2fsprogs/debugfs/
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->f, "%5d", inode.i_size)
130 struct list_dir_struct ls; local
    [all...]
  /external/mesa3d/src/glsl/
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)
248 loop_unroll_visitor v(ls, max_iterations);
loop_analysis.cpp 55 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->insert(var)
217 loop_variable_state *ls = this->loops->insert(ir); local
226 loop_variable_state *const ls = local
    [all...]
loop_controls.cpp 174 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)
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Pyramid.cpp 215 ImageTypeShortBase *s, *ns, *ls, *p, *np; local
220 ls = scr->ptr[scr->height + scr->border - 1] + scr->pitch - (off >> 1);
226 for (; s < ls; s = ns, ns += scr->pitch, p = np, np += in->pitch) {
238 ls = s + out->pitch * (out->height + off);
243 for (; s < ls; s = ns, ns += out->pitch, p = np, np += pitch2) {
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 77 lzma_stream ls; member in struct:__anon10341
97 lzma_stream ls = LZMA_STREAM_INIT; local
105 xzf->ls = ls;
129 xzf->err = lzma_stream_decoder(&xzf->ls, memlimit,
148 lzma_end(&xzf->ls);
172 if (xzf->ls.avail_in == 0 && !xzf->eof) {
174 xzf->ls.next_in = xzf->in;
175 xzf->ls.avail_in = fread(xzf->in, 1, BUFSIZ,
188 xzf->ls.next_out = xzf->out
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lparser.h 100 struct LexState *ls; /* lexical state */ member in struct:FuncState

Completed in 560 milliseconds

1 2 3