HomeSort by relevance Sort by last modified time
    Searched refs:lls (Results 1 - 17 of 17) sorted by null

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mn10300/
loop.s 11 lls
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
link_test.go 20 lls []Link
26 lls, err := Links(af, "")
30 lps = append(lps, linkPack{af: af, lls: lls})
42 for _, sll := range lp.lls {
43 lls, err := Links(lp.af, sll.Name)
47 for _, ll := range lls {
56 if n != len(lp.lls) {
57 t.Errorf("af=%s got %d; want %d", addrFamily(lp.af), n, len(lp.lls))
link.go 72 var lls []Link
104 if isDupLink(lls, llname) || name != "" && name != llname {
109 lls = append(lls, ll)
112 return lls, nil
115 func isDupLink(lls []Link, name string) bool {
116 for _, ll := range lls {
address.go 53 lls, err := links(eps, name)
54 if len(lls) == 0 {
58 for _, ll := range lls {
address_test.go 103 for _, ll := range lp.lls {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
link_test.go 20 lls []Link
26 lls, err := Links(af, "")
30 lps = append(lps, linkPack{af: af, lls: lls})
42 for _, sll := range lp.lls {
43 lls, err := Links(lp.af, sll.Name)
47 for _, ll := range lls {
56 if n != len(lp.lls) {
57 t.Errorf("af=%s got %d; want %d", addrFamily(lp.af), n, len(lp.lls))
link.go 72 var lls []Link
104 if isDupLink(lls, llname) || name != "" && name != llname {
109 lls = append(lls, ll)
112 return lls, nil
115 func isDupLink(lls []Link, name string) bool {
116 for _, ll := range lls {
address.go 53 lls, err := links(eps, name)
54 if len(lls) == 0 {
58 for _, ll := range lls {
address_test.go 103 for _, ll := range lp.lls {
  /external/toybox/lib/
linestack.c 7 void linestack_addstack(struct linestack **lls, struct linestack *throw,
10 struct linestack *catch = *lls;
19 *lls = xmalloc(sizeof(struct linestack)+catch->max*sizeof(struct ptr_len));
20 memcpy(*lls, catch, sizeof(struct linestack)+pos*sizeof(struct ptr_len));
25 memmove((*lls)->idx+pos+throw->len, catch->idx+pos,
29 if (catch != *lls) {
31 catch = *lls;
40 void linestack_insert(struct linestack **lls, long pos, char *line, long len)
53 linestack_addstack(lls, &ls.ls, pos);
56 void linestack_append(struct linestack **lls, char *line
    [all...]
lib.h 252 void linestack_addstack(struct linestack **lls, struct linestack *throw,
254 void linestack_insert(struct linestack **lls, long pos, char *line, long len);
255 void linestack_append(struct linestack **lls, char *line);
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 64 LinkedList<String> lls = new LinkedList<String>(); local
65 lls.add("1");
66 lls.add("2");
67 lls.add("3");
68 lls.add("4");
69 lls.add("");
70 LinkedList<String> ll = lls;
97 LinkedList<String> lls = new LinkedList<String>(); local
98 lls.add("1");
99 lls.add("2")
    [all...]
  /external/opencv/cv/src/
cvdistransform.cpp 252 int* lls = (int*)(labels + i*lstep); local
262 //assert( lls[j] != 0 );
273 l0 = lls[j-lstep*2-1];
279 l0 = lls[j-lstep*2+1];
285 l0 = lls[j-lstep-2];
291 l0 = lls[j-lstep-1];
297 l0 = lls[j-lstep];
303 l0 = lls[j-lstep+1];
309 l0 = lls[j-lstep+2];
315 l0 = lls[j-1]
329 int* lls = (int*)(labels + i*lstep); local
    [all...]
  /prebuilts/go/darwin-x86/src/net/
interface_solaris.go 17 lls, err := lif.Links(syscall.AF_UNSPEC, "")
22 for _, ll := range lls {
  /prebuilts/go/linux-x86/src/net/
interface_solaris.go 17 lls, err := lif.Links(syscall.AF_UNSPEC, "")
22 for _, ll := range lls {
  /external/zopfli/src/zopfli/
deflate.c 317 unsigned lls = ZopfliGetLengthSymbol(litlen); local
320 assert(ll_lengths[lls] > 0);
322 AddHuffmanBits(ll_symbols[lls], ll_lengths[lls], bp, out, outsize);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
LinkedListTest.java 655 LinkedList<String> lls = new LinkedList<String>(); local
656 lls.add("First");
657 lls.add("Second");
660 lls.toArray(argArray);
    [all...]

Completed in 741 milliseconds