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

/external/valgrind/main/memcheck/tests/
H A Dinits.c12 static int ls; local
16 if (ls == 0xCAFEBABE) printf("3!\n");
/external/e2fsprogs/lib/ext2fs/
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...]
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...]
/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/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
H A Dindex.php152 $ls = new LicenseServerClient(); variable
153 echo $ls->checkLicense($_REQUEST['user_id']);
/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/mesa3d/src/glsl/
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...]
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 Dglsl_parser_extras.cpp741 loop_state *ls = analyze_loop_variables(ir); local
742 progress = set_loop_controls(ir, ls) || progress;
743 progress = unroll_loops(ir, ls, max_unroll_iterations) || progress;
744 delete ls;
/external/harfbuzz/src/
H A Dharfbuzz-open.c37 static HB_Error Load_LangSys( HB_LangSys* ls, argument
48 ls->LookupOrderOffset = GET_UShort(); /* should be 0 */
49 ls->ReqFeatureIndex = GET_UShort();
50 count = ls->FeatureCount = GET_UShort();
54 ls->FeatureIndex = NULL;
56 if ( ALLOC_ARRAY( ls->FeatureIndex, count, HB_UShort ) )
61 FREE( ls->FeatureIndex );
65 fi = ls->FeatureIndex;
76 static void Free_LangSys( HB_LangSys* ls )
78 FREE( ls
[all...]
H A Dharfbuzz-gsub.c773 static HB_Error Load_LigatureSet( HB_LigatureSet* ls, argument
789 count = ls->LigatureCount = GET_UShort();
793 ls->Ligature = NULL;
795 if ( ALLOC_ARRAY( ls->Ligature, count, HB_Ligature ) )
798 l = ls->Ligature;
827 static void Free_LigatureSet( HB_LigatureSet* ls )
834 if ( ls->Ligature )
836 count = ls->LigatureCount;
837 l = ls->Ligature;
853 HB_LigatureSubst* ls local
924 HB_LigatureSubst* ls = &st->ligature; local
955 HB_LigatureSubst* ls = &st->ligature; local
3822 HB_LangSys* ls; local
3963 HB_LangSys* ls; local
[all...]
H A Dharfbuzz-gpos.c5570 HB_LangSys* ls; local
5593 ls = &s->DefaultLangSys;
5599 ls = &lsr[language_index].LangSys;
5602 fi = ls->FeatureIndex;
5604 for ( n = 0; n < ls->FeatureCount; n++ )
5711 HB_LangSys* ls; local
5734 ls = &s->DefaultLangSys;
5740 ls = &lsr[language_index].LangSys;
5743 fi = ls->FeatureIndex;
5745 if ( ALLOC_ARRAY( ftl, ls
[all...]
/external/llvm/lib/CodeGen/
H A DSplitter.cpp56 LoopSplit(LoopSplitter &ls, LiveInterval &li, MachineLoop &loop) argument
57 : ls(ls), li(li), loop(loop), valid(true), inSplit(false), newLI(0) {
87 LoopSplitter &ls; member in class:llvm::LoopSplit
99 const TargetRegisterClass *trc = ls.mri->getRegClass(li.reg);
100 unsigned vreg = ls.mri->createVirtualRegister(trc);
101 newLI = &ls.lis->getOrCreateInterval(vreg);
111 ls.lis->getVNInfoAllocator());
125 assert(ls.canInsertPreHeader(loop) &&
127 preHeader = &ls
[all...]
/external/icu4c/test/intltest/
H A Dicusvtst.cpp852 UnicodeString ls = locale.getName(); local
853 if (LocaleUtility::isFallbackOf(californio, ls)) {
854 if (!ls.caseCompare(valley, 0)) {
856 } else if (!ls.caseCompare(surfer, 0)) {
858 } else if (!ls.caseCompare(geek, 0)) {
978 TestStringService ls; local
979 ls.addListener(&one, status);
980 ls.addListener(&two, status);
983 ls.registerInstance(new UnicodeString("Foo"), "en_FOO", status);
985 ls
[all...]
/external/openssl/crypto/err/
H A Derr.c863 const char *ls,*fs,*rs; local
870 ls=ERR_lib_error_string(e);
874 if (ls == NULL)
881 BIO_snprintf(buf, len,"error:%08lX:%s:%s:%s", e, ls?ls:lsbuf,
/external/dnsmasq/src/
H A Doption.c1072 size_t ls = strlen(li->suffix); local
1073 if (len > ls &&
1074 strcmp(li->suffix, &ent->d_name[len - ls]) == 0)
/external/v8/src/arm/
H A Dconstants-arm.h132 ls = 9 << 28, // C clear or Z set Unsigned lower or same. enumerator in enum:v8::internal::Condition
162 return ls;
163 case ls:
/external/v8/src/mips/
H A Dconstants-mips.h409 ls = Uless_equal, enumerator in enum:v8::internal::Condition
/external/libvpx/examples/includes/geshi/
H A Dgeshi.php3727 $ls = ($this->header_type != GESHI_HEADER_PRE && $this->header_type != GESHI_HEADER_PRE_VALID) ? "\n" : ''; variable
3807 $parsed_code .= "<li$attr_string>$start{$code[$i-1]}$end</li>$ls";
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp4987 inline int LS_to_idx (int ls) { argument
4988 return (ls >> (N_MUTEXES - LOCKSET_INTERSECTION_SIZE))
4993 for (int ls = 0; ls < (1 << N_MUTEXES); ls++) {
4994 if (LS_to_idx(ls) == 0)
4997 if (ls & (1 << m))
5000 data[LS_to_idx(ls)]++;
5003 if (ls & (1 << m))
/external/valgrind/unittest/
H A Dracecheck_unittest.cc4799 inline int LS_to_idx (int ls) { argument
4800 return (ls >> (N_MUTEXES - LOCKSET_INTERSECTION_SIZE))
4805 for (int ls = 0; ls < (1 << N_MUTEXES); ls++) {
4806 if (LS_to_idx(ls) == 0)
4809 if (ls & (1 << m))
4812 data[LS_to_idx(ls)]++;
4815 if (ls & (1 << m))
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp3624 short ls = 0; local
3626 ls = CSSValueKatakanaIroha - CSSValueDisc + 1;
3628 ls = i->id - CSSValueDisc;
3632 listStyle = primitiveValueCache()->createValue(ls, (CSSPrimitiveValue::UnitTypes) i->unit);

Completed in 452 milliseconds