Searched refs:ls (Results 1 - 25 of 548) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/format/
H A Dc94-scanf-1.c9 foo (wchar_t *ls) argument
14 that %ls, %lc, %l[] are accepted without warning.
16 scanf ("%lc%ls%l[abc]", ls, ls, ls);
H A Dms_c94-scanf-1.c10 foo (wchar_t *ls) argument
15 that %ls, %lc, %l[] are accepted without warning.
17 scanf ("%lc%ls%l[abc]", ls, ls, ls);
H A Dc94-printf-1.c9 foo (wint_t lc, wchar_t *ls) argument
14 that %ls and %lc are accepted without warning.
17 printf ("%ls", ls);
H A Dms_c94-printf-1.c10 foo (wint_t lc, wchar_t *ls) argument
15 that %ls and %lc are accepted without warning.
18 printf ("%ls", ls);
H A Dc99-scanf-2.c11 foo (int *ip, long long int *llp, wchar_t *ls) argument
19 scanf ("%C", ls); /* { dg-warning "C" "scanf %C" } */
20 scanf ("%S", ls); /* { dg-warning "C" "scanf %S" } */
H A Dxopen-1.c11 foo (int i, unsigned int u, wint_t lc, wchar_t *ls, int *ip, double d, argument
35 printf ("%S", ls);
36 printf ("%3S", ls);
37 printf ("%.3S", ls);
38 printf ("%hS", ls); /* { dg-warning "length" "bad %hS" } */
39 printf ("%hhS", ls); /* { dg-warning "length" "bad %hhS" } */
40 printf ("%lS", ls); /* { dg-warning "length" "bad %lS" } */
41 printf ("%llS", ls); /* { dg-warning "length" "bad %llS" } */
42 printf ("%jS", ls); /* { dg-warning "length" "bad %jS" } */
43 printf ("%zS", ls); /* { d
[all...]
H A Dms_c99-scanf-2.c12 foo (int *ip, long long int *llp, wchar_t *ls) argument
20 scanf ("%C", ls); /* { dg-warning "C" "scanf %C" } */
21 scanf ("%S", ls); /* { dg-warning "C" "scanf %S" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/format/
H A Dc94-scanf-1.c9 foo (wchar_t *ls) argument
14 that %ls, %lc, %l[] are accepted without warning.
16 scanf ("%lc%ls%l[abc]", ls, ls, ls);
H A Dc94-printf-1.c9 foo (wint_t lc, wchar_t *ls) argument
14 that %ls and %lc are accepted without warning.
17 printf ("%ls", ls);
H A Dc99-scanf-2.c11 foo (int *ip, long long int *llp, wchar_t *ls) argument
19 scanf ("%C", ls); /* { dg-warning "C" "scanf %C" } */
20 scanf ("%S", ls); /* { dg-warning "C" "scanf %S" } */
H A Dxopen-1.c11 foo (int i, unsigned int u, wint_t lc, wchar_t *ls, int *ip, double d, argument
35 printf ("%S", ls);
36 printf ("%3S", ls);
37 printf ("%.3S", ls);
38 printf ("%hS", ls); /* { dg-warning "length" "bad %hS" } */
39 printf ("%hhS", ls); /* { dg-warning "length" "bad %hhS" } */
40 printf ("%lS", ls); /* { dg-warning "length" "bad %lS" } */
41 printf ("%llS", ls); /* { dg-warning "length" "bad %llS" } */
42 printf ("%jS", ls); /* { dg-warning "length" "bad %jS" } */
43 printf ("%zS", ls); /* { d
[all...]
/netbsd-6-1-5-RELEASE/external/mit/lua/dist/src/
H A Dllex.c30 #define next(ls) (ls->current = zgetc(ls->z))
35 #define currIsNewline(ls) (ls->current == '\n' || ls->current == '\r')
50 #define save_and_next(ls) (save(ls, ls->current), next(ls))
53 save(LexState *ls, int c) argument
80 luaX_token2str(LexState *ls, int token) argument
91 txtToken(LexState *ls, int token) argument
104 luaX_lexerror(LexState *ls, const char *msg, int token) argument
114 luaX_syntaxerror(LexState *ls, const char *msg) argument
119 luaX_newstring(LexState *ls, const char *str, size_t l) argument
129 inclinenumber(LexState *ls) argument
140 luaX_setinput(lua_State *L, LexState *ls, ZIO *z, TString *source) argument
163 check_next(LexState *ls, const char *set) argument
171 buffreplace(LexState *ls, char from, char to) argument
179 trydecpoint(LexState *ls, SemInfo *seminfo) argument
194 read_numeral(LexState *ls, SemInfo *seminfo) argument
210 skip_sep(LexState *ls) argument
223 read_long_string(LexState *ls, SemInfo *seminfo, int sep) argument
278 read_string(LexState *ls, int del, SemInfo *seminfo) argument
334 llex(LexState *ls, SemInfo *seminfo) argument
448 luaX_next(LexState *ls) argument
459 luaX_lookahead(LexState *ls) argument
[all...]
H A Dlparser.c55 static void chunk (LexState *ls);
56 static void expr (LexState *ls, expdesc *v);
59 static void anchor_token (LexState *ls) { argument
60 if (ls->t.token == TK_NAME || ls->t.token == TK_STRING) {
61 TString *ts = ls->t.seminfo.ts;
62 luaX_newstring(ls, getstr(ts), ts->tsv.len);
67 static void error_expected (LexState *ls, int token) { argument
68 luaX_syntaxerror(ls,
69 luaO_pushfstring(ls
82 testnext(LexState *ls, int c) argument
91 check(LexState *ls, int c) argument
96 checknext(LexState *ls, int c) argument
106 check_match(LexState *ls, int what, int who, int where) argument
119 str_checkname(LexState *ls) argument
135 codestring(LexState *ls, expdesc *e, TString *s) argument
140 checkname(LexState *ls, expdesc *e) argument
145 registerlocalvar(LexState *ls, TString *varname) argument
162 new_localvar(LexState *ls, TString *name, int n) argument
169 adjustlocalvars(LexState *ls, int nvars) argument
178 removevars(LexState *ls, int tolevel) argument
250 singlevar(LexState *ls, expdesc *var) argument
258 adjust_assign(LexState *ls, int nvars, int nexps, expdesc *e) argument
278 enterlevel(LexState *ls) argument
312 pushclosure(LexState *ls, FuncState *func, expdesc *v) argument
330 open_func(LexState *ls, FuncState *fs) argument
358 close_func(LexState *ls) argument
409 field(LexState *ls, expdesc *v) argument
420 yindex(LexState *ls, expdesc *v) argument
445 recfield(LexState *ls, struct ConsControl *cc) argument
492 listfield(LexState *ls, struct ConsControl *cc) argument
500 constructor(LexState *ls, expdesc *t) argument
545 parlist(LexState *ls) argument
578 body(LexState *ls, expdesc *e, int needself, int line) argument
598 explist1(LexState *ls, expdesc *v) argument
611 funcargs(LexState *ls, expdesc *f) argument
669 prefixexp(LexState *ls, expdesc *v) argument
692 primaryexp(LexState *ls, expdesc *v) argument
729 simpleexp(LexState *ls, expdesc *v) argument
830 subexpr(LexState *ls, expdesc *v, unsigned int limit) argument
858 expr(LexState *ls, expdesc *v) argument
883 block(LexState *ls) argument
910 check_conflict(LexState *ls, struct LHS_assign *lh, expdesc *v) argument
933 assignment(LexState *ls, struct LHS_assign *lh, int nvars) argument
967 cond(LexState *ls) argument
977 breakstat(LexState *ls) argument
993 whilestat(LexState *ls, int line) argument
1012 repeatstat(LexState *ls, int line) argument
1038 exp1(LexState *ls) argument
1048 forbody(LexState *ls, int base, int line, int nvars, int isnum) argument
1069 fornum(LexState *ls, TString *varname, int line) argument
1091 forlist(LexState *ls, TString *indexname) argument
1114 forstat(LexState *ls, int line) argument
1132 test_then_block(LexState *ls) argument
1143 ifstat(LexState *ls, int line) argument
1167 localfunc(LexState *ls) argument
1181 localstat(LexState *ls) argument
1200 funcname(LexState *ls, expdesc *v) argument
1214 funcstat(LexState *ls, int line) argument
1226 exprstat(LexState *ls) argument
1240 retstat(LexState *ls) argument
1273 statement(LexState *ls) argument
1327 chunk(LexState *ls) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr20739.c21 bar (const baz_t * ls) argument
23 foo (ls == 0 ? *(&baz[0]) : *ls);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr20739.c21 bar (const baz_t * ls) argument
23 foo (ls == 0 ? *(&baz[0]) : *ls);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/warn/
H A Dformat1.C9 foo (int i, int *ip, __WINT_TYPE__ lc, wchar_t *ls) argument
11 std::printf ("%d%ls%lc\n", i, ls, lc);
12 std::printf ("%d", ls); // { dg-warning "format" "printf warning" }
13 std::scanf ("%d%lc%ls%l[abc]", ip, ls, ls, ls);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/warn/
H A Dformat1.C9 foo (int i, int *ip, __WINT_TYPE__ lc, wchar_t *ls) argument
11 std::printf ("%d%ls%lc\n", i, ls, lc);
12 std::printf ("%d", ls); // { dg-warning "format" "printf warning" }
13 std::scanf ("%d%lc%ls%l[abc]", ip, ls, ls, ls);
/netbsd-6-1-5-RELEASE/gnu/dist/groff/
H A Dmdate.sh12 if ls -L /dev/null 1>/dev/null 2>&1; then ls -L -l $1; else ls -l $1; fi
/netbsd-6-1-5-RELEASE/bin/ls/
H A DMakefile4 PROG= ls
5 SRCS= cmp.c ls.c main.c print.c util.c
/netbsd-6-1-5-RELEASE/sys/compat/linux/common/
H A Dlinux_oldselect.c64 struct linux_oldselect ls; local
67 if ((error = copyin(SCARG(uap, lsp), &ls, sizeof(ls))))
70 return linux_select1(l, retval, ls.nfds, ls.readfds, ls.writefds,
71 ls.exceptfds, ls.timeout);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-mips-elf/
H A Dreloc-6a.s5 ls: label
10 lw $4,%got_page(ls)($gp)
11 addiu $4,$4,%got_ofst(ls)
H A Dreloc-6b.s5 ls: label
10 lw $4,%got_page(ls)($gp)
11 addiu $4,$4,%got_ofst(ls)
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/libldap/
H A Dldap_sync.c62 ldap_sync_t *ls = ls_in; local
64 if ( ls == NULL ) {
65 ls = ldap_memalloc( sizeof( ldap_sync_t ) );
66 if ( ls == NULL ) {
71 memset( ls, 0, sizeof( ldap_sync_t ) );
74 ls->ls_scope = LDAP_SCOPE_SUBTREE;
75 ls->ls_timeout = -1;
77 return ls;
84 ldap_sync_destroy( ldap_sync_t *ls, int freeit ) argument
86 assert( ls !
130 ldap_sync_search_entry( ldap_sync_t *ls, LDAPMessage *res ) argument
245 ldap_sync_search_reference( ldap_sync_t *ls, LDAPMessage *res ) argument
267 ldap_sync_search_result( ldap_sync_t *ls, LDAPMessage *res ) argument
411 ldap_sync_search_intermediate( ldap_sync_t *ls, LDAPMessage *res, int *refreshDone ) argument
626 ldap_sync_init( ldap_sync_t *ls, int mode ) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.target/x86_64/abi/
H A Dtest_passing_structs.c39 check_struct_passing2 (struct long_struct ls ATTRIBUTE_UNUSED)
45 check_struct_passing3 (struct long2_struct ls ATTRIBUTE_UNUSED)
51 check_struct_passing4 (struct long3_struct ls ATTRIBUTE_UNUSED)
55 assert ((unsigned long)&ls.l1 == rsp+8);
56 assert ((unsigned long)&ls.l2 == rsp+16);
57 assert ((unsigned long)&ls.l3 == rsp+24);
65 struct long_struct ls = { 49 }; local
78 iregs.I0 = ls.l;
81 WRAP_CALL (check_struct_passing2)(ls);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/cpp0x/
H A Dinitlist30.C7 void f (std::initializer_list<Ts>... ls);

Completed in 216 milliseconds

1234567891011>>