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

12

/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/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/jmonkeyengine/engine/src/core/com/jme3/math/
H A DLineSegment.java65 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...]
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestSerialization.java84 List<Object> ls; field in class:TestSerialization.TestSerializationMessage
109 ls = new ArrayList<Object>();
110 ls.add("hello");
111 ls.add(new SomeObject(-22));
135 System.out.println(cm.ls);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DDefaultMp4Builder.java524 private static long sum(int[] ls) { argument
526 for (long l : ls) {
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_fcr.c933 UINT16 ls; local
982 ls = ((BT_HDR *)(p_fcrb->waiting_for_ack_q.p_first))->layer_specific & L2CAP_FCR_SAR_BITS;
984 if ( (ls == L2CAP_FCR_UNSEG_SDU) || (ls == L2CAP_FCR_END_SDU) )
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPv3Client.java909 public List<SFTPv3DirectoryEntry> ls(String dirName) throws IOException method in class:SFTPv3Client
/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...]
/external/bluetooth/bluedroid/bta/jv/
H A Dbta_jv_act.c1543 tBTA_JV_API_L2CAP_SERVER *ls = &(p_data->l2cap_server);
1548 if (ls->rx_mtu >0)
1551 cfg.mtu = ls->rx_mtu;
1560 L2CA_SetDesireRole(ls->role);
1564 if (0 == sec_id || (FALSE == bta_jv_check_psm(ls->local_psm)) ||
1565 (handle = GAP_ConnOpen("JV L2CAP", sec_id, 1, 0, ls->local_psm, &cfg,
1566 ls->sec_mask, GAP_FCR_CHAN_OPT_BASIC, bta_jv_l2cap_server_cback)) == GAP_INVALID_HANDLE)
1582 p_cb->p_cback = ls->p_cback;
1586 p_cb->psm = ls->local_psm;
1588 ls
2270 tBTA_JV_API_RFCOMM_SERVER *ls = &(p_data->rfcomm_server); local
[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/linux-tools-perf/
H A Dbuiltin-lock.c434 struct lock_stat *ls; local
438 ls = lock_stat_findnew(acquire_event->addr, acquire_event->name);
439 if (ls->discard)
452 ls->nr_trylock++;
454 ls->nr_readlock++;
457 ls->nr_acquired++;
463 ls->nr_acquired++;
474 ls->discard = 1;
485 ls->nr_acquire++;
498 struct lock_stat *ls; local
554 struct lock_stat *ls; local
601 struct lock_stat *ls; local
[all...]
/external/openssh/openbsd-compat/
H A Dglob.c248 Char *lm, *ls; local
256 ls = lm;
313 for (lm = ls; (pl < pm); *lm++ = *pl++)
/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/wpa_supplicant_8/hostapd/
H A Dconfig_file.c1299 struct hostapd_lang_string *ls; local
1313 ls = os_realloc_array(*array, *count + 1,
1315 if (ls == NULL)
1318 *array = ls;
1319 ls = &(*array)[*count];
1322 os_memset(ls->lang, 0, sizeof(ls->lang));
1323 os_memcpy(ls->lang, pos, clen);
1324 ls->name_len = nlen;
1325 os_memcpy(ls
[all...]
/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)

Completed in 480 milliseconds

12