HomeSort by: relevance | last modified time | path
    Searched refs:hl (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/external/bsd/tmux/dist/
hyperlinks.c 117 struct hyperlinks *hl = hlu->tree; local
122 RB_REMOVE(hyperlinks_by_inner_tree, &hl->by_inner, hlu);
123 RB_REMOVE(hyperlinks_by_uri_tree, &hl->by_uri, hlu);
133 hyperlinks_put(struct hyperlinks *hl, const char *uri_in,
154 hlu = RB_FIND(hyperlinks_by_uri_tree, &hl->by_uri, &find);
164 hlu->inner = hl->next_inner++;
168 hlu->tree = hl;
169 RB_INSERT(hyperlinks_by_uri_tree, &hl->by_uri, hlu);
170 RB_INSERT(hyperlinks_by_inner_tree, &hl->by_inner, hlu);
181 hyperlinks_get(struct hyperlinks *hl, u_int inner, const char **uri_out
203 struct hyperlinks *hl; local
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/rl78/
trampoline.S 84 movw hl, #trampoline_array
86 1: movw ax, [hl + TO_ADDR]
90 movw ax, hl
92 movw hl, ax
98 movw [hl + TO_ADDR], ax
100 movw [hl + TO_CHAIN], ax
102 movw [hl + TO_FRAME], ax
104 movw ax, [hl + TO_STUB]
111 movw hl, #trampoline_array
115 1: movw ax, [hl + TO_FRAME
    [all...]
anddi3.S 30 movw hl, sp
32 mov a, [hl+4]
33 and a, [hl+12]
36 mov a, [hl+5]
37 and a, [hl+13]
40 mov a, [hl+6]
41 and a, [hl+14]
44 mov a, [hl+7]
45 and a, [hl+15]
48 mov a, [hl+8
    [all...]
adddi3.S 30 movw hl, sp ; use HL-based addressing (allows for direct addw)
32 movw ax, [hl+4]
33 addw ax, [hl+12]
36 mov a, [hl+6] ; middle bytes of the result are determined using 8-bit
37 addc a, [hl+14] ; ADDC insns which both account for and update the carry bit
39 mov a, [hl+7]
40 addc a, [hl+15]
43 mov a, [hl+8]
44 addc a, [hl+16
    [all...]
subdi3.S 30 movw hl, sp ; use HL-based addressing (allows for direct subw)
32 movw ax, [hl+4]
33 subw ax, [hl+12]
36 mov a, [hl+6] ; middle bytes of the result are determined using 8-bit
37 subc a, [hl+14] ; SUBC insns which both account for and update the carry bit
39 mov a, [hl+7]
40 subc a, [hl+15]
43 mov a, [hl+8]
44 subc a, [hl+16
    [all...]
divmodqi.S 52 mov a, [hl+4]
83 ;; (quot,rem) = 4[hl] /% 6[hl]
85 mov a, [hl+4] ; num
86 cmp a, [hl+6] ; den
91 ; mov a, [hl+4] ; already there from above
95 mov a, [hl+6]
179 movw hl, sp
186 movw hl, sp
193 movw hl, a
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/rl78/
trampoline.S 84 movw hl, #trampoline_array
86 1: movw ax, [hl + TO_ADDR]
90 movw ax, hl
92 movw hl, ax
98 movw [hl + TO_ADDR], ax
100 movw [hl + TO_CHAIN], ax
102 movw [hl + TO_FRAME], ax
104 movw ax, [hl + TO_STUB]
111 movw hl, #trampoline_array
115 1: movw ax, [hl + TO_FRAME
    [all...]
anddi3.S 30 movw hl, sp
32 mov a, [hl+4]
33 and a, [hl+12]
36 mov a, [hl+5]
37 and a, [hl+13]
40 mov a, [hl+6]
41 and a, [hl+14]
44 mov a, [hl+7]
45 and a, [hl+15]
48 mov a, [hl+8
    [all...]
adddi3.S 30 movw hl, sp ; use HL-based addressing (allows for direct addw)
32 movw ax, [hl+4]
33 addw ax, [hl+12]
36 mov a, [hl+6] ; middle bytes of the result are determined using 8-bit
37 addc a, [hl+14] ; ADDC insns which both account for and update the carry bit
39 mov a, [hl+7]
40 addc a, [hl+15]
43 mov a, [hl+8]
44 addc a, [hl+16
    [all...]
subdi3.S 30 movw hl, sp ; use HL-based addressing (allows for direct subw)
32 movw ax, [hl+4]
33 subw ax, [hl+12]
36 mov a, [hl+6] ; middle bytes of the result are determined using 8-bit
37 subc a, [hl+14] ; SUBC insns which both account for and update the carry bit
39 mov a, [hl+7]
40 subc a, [hl+15]
43 mov a, [hl+8]
44 subc a, [hl+16
    [all...]
divmodqi.S 52 mov a, [hl+4]
83 ;; (quot,rem) = 4[hl] /% 6[hl]
85 mov a, [hl+4] ; num
86 cmp a, [hl+6] ; den
91 ; mov a, [hl+4] ; already there from above
95 mov a, [hl+6]
179 movw hl, sp
186 movw hl, sp
193 movw hl, a
    [all...]
  /src/usr.bin/mail/
head.c 234 parse(const char line[], struct headline *hl, char pbuf[])
240 hl->l_from = NULL;
241 hl->l_tty = NULL;
242 hl->l_date = NULL;
251 hl->l_from = copyin(word, &sp);
254 hl->l_tty = copyin(word, &sp);
257 hl->l_date = copyin(cp, &sp);
269 struct headline hl; local
276 parse(linebuf, &hl, parbuf);
277 if (hl.l_from == NULL || hl.l_date == NULL)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/stubs/
z80-stub.c 42 ld hl, 2 ;EX_SIGINT
43 push hl
333 ld hl, #-DBG_SWBREAK_SIZE variable
334 push hl
335 ld hl, #EX_SWBREAK
336 push hl
359 ld hl, #-DBG_HWBREAK_SIZE variable
360 push hl
361 ld hl, #EX_HWBREAK
362 push hl
375 ld hl, #0 variable
378 ld hl, #_state + R_SP variable
404 ld hl, #0 ;pc_adj variable
406 ld hl, #DBG_NMI_EX variable
408 ld hl, #_stub_main variable
423 ld hl, #0 ;pc_adj variable
425 ld hl, #DBG_INT_EX variable
427 ld hl, #_stub_main variable
1184 ld hl, #_state + R_HL - 1 variable
1211 ld sp, hl variable
1260 ld hl, i variable
1262 ld hl, #_state + R_IR variable
1297 ld hl, (#_state + R_PC) variable
1300 ld hl, 0xc30000 ; use 0xc34000 for jp.s variable
1311 ld hl, (#_state + R_HL_) variable
1319 ld hl, (#_state + R_IR + 1) ;I register variable
1336 ld hl, (#_state + R_AF) variable
1341 ld hl, (#_state + R_PC) variable
1343 ld hl, (#_state + R_HL) variable
    [all...]
  /src/external/gpl3/gdb/dist/gdb/stubs/
z80-stub.c 42 ld hl, 2 ;EX_SIGINT
43 push hl
333 ld hl, #-DBG_SWBREAK_SIZE variable
334 push hl
335 ld hl, #EX_SWBREAK
336 push hl
359 ld hl, #-DBG_HWBREAK_SIZE variable
360 push hl
361 ld hl, #EX_HWBREAK
362 push hl
375 ld hl, #0 variable
378 ld hl, #_state + R_SP variable
404 ld hl, #0 ;pc_adj variable
406 ld hl, #DBG_NMI_EX variable
408 ld hl, #_stub_main variable
423 ld hl, #0 ;pc_adj variable
425 ld hl, #DBG_INT_EX variable
427 ld hl, #_stub_main variable
1184 ld hl, #_state + R_HL - 1 variable
1211 ld sp, hl variable
1260 ld hl, i variable
1262 ld hl, #_state + R_IR variable
1297 ld hl, (#_state + R_PC) variable
1300 ld hl, 0xc30000 ; use 0xc34000 for jp.s variable
1311 ld hl, (#_state + R_HL_) variable
1319 ld hl, (#_state + R_IR + 1) ;I register variable
1336 ld hl, (#_state + R_AF) variable
1341 ld hl, (#_state + R_PC) variable
1343 ld hl, (#_state + R_HL) variable
    [all...]
  /src/sys/dev/bluetooth/
btms.c 206 int i, hl; local
213 hl = hid_locate(ba->ba_desc,
221 if (hl == 0 || NOTMOUSE(flags)) {
227 hl = hid_locate(ba->ba_desc,
235 if (hl == 0 || NOTMOUSE(flags)) {
241 hl = hid_locate(ba->ba_desc,
250 if (hl) {
265 hl = hid_locate(ba->ba_desc,
278 if (!hl) {
279 hl = hid_locate(ba->ba_desc
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
asn1_parse.c 22 static int asn1_print_info(BIO *bp, long offset, int depth, int hl, long len,
37 if (BIO_snprintf(str, sizeof(str), "%5ld:d=%-2d hl=%ld l=%4ld %s",
38 offset, depth, (long)hl, len, p)
42 if (BIO_snprintf(str, sizeof(str), "%5ld:d=%-2d hl=%ld l=inf %s",
43 offset, depth, (long)hl, p)
102 int nl, hl, j, r; local
125 hl = (p - op);
126 length -= hl;
131 hl, len, tag, xclass, j, (indent) ? depth : 0))
181 if (d2i_ASN1_OBJECT(&o, &opp, len + hl) != NULL)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
asn1_parse.c 22 static int asn1_print_info(BIO *bp, long offset, int depth, int hl, long len,
37 if (BIO_snprintf(str, sizeof(str), "%5ld:d=%-2d hl=%ld l=%4ld %s",
38 offset, depth, (long)hl, len, p) <= 0)
41 if (BIO_snprintf(str, sizeof(str), "%5ld:d=%-2d hl=%ld l=inf %s",
42 offset, depth, (long)hl, p) <= 0)
100 int nl, hl, j, r; local
123 hl = (p - op);
124 length -= hl;
129 hl, len, tag, xclass, j, (indent) ? depth : 0))
186 if (d2i_ASN1_OBJECT(&o, &opp, len + hl) != NULL)
    [all...]
  /src/external/gpl2/mkhybrid/dist/libfile/
softmagic.c 166 ((p->hl[0]<<24)|(p->hl[1]<<16)|(p->hl[2]<<8)|(p->hl[3]));
174 ((p->hl[3]<<24)|(p->hl[2]<<16)|(p->hl[1]<<8)|(p->hl[0]));
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
asn1_par.c 75 int nl, hl, j, r; local
100 hl = (p - op);
101 length -= hl;
110 if (BIO_printf(bp, "d=%-2d hl=%ld l=%4ld ",
111 depth, (long)hl, len) <= 0)
114 if (BIO_printf(bp, "d=%-2d hl=%ld l=inf ", depth, (long)hl) <= 0)
179 if (d2i_ASN1_OBJECT(&o, &opp, len + hl) != NULL) {
202 os = d2i_ASN1_OCTET_STRING(NULL, &opp, len + hl);
258 ai = d2i_ASN1_INTEGER(NULL, &opp, len + hl);
    [all...]
  /src/sys/dev/hid/
hidms.c 82 int i, hl; local
127 hl = hid_locate(desc,
136 if (hl) {
151 hl = hid_locate(desc,
164 if (!hl) {
165 hl = hid_locate(desc,
174 if (hl) {
  /src/external/bsd/less/dist/
search.c 709 static void add_hilite(struct hilite_tree *anchor, struct hilite *hl)
714 if (hl->hl_startpos >= hl->hl_endpos)
723 n->r = *hl;
736 if (hl->hl_startpos < p->r.hl_startpos)
738 if (hl->hl_endpos > p->r.hl_startpos && hl->hl_attr == p->r.hl_attr)
739 hl->hl_endpos = p->r.hl_startpos;
747 if (hl->hl_startpos < p->r.hl_endpos && hl->hl_attr == p->r.hl_attr)
893 struct hilite hl; local
1123 struct hilite hl; local
    [all...]
  /src/external/bsd/ntp/dist/include/
ntp_types.h 187 int16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon7373::__anon7374
190 uint16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon7373::__anon7375
200 uint16_t ll; uint16_t lh; uint16_t hl; int16_t hh;
203 uint16_t ll; uint16_t lh; uint16_t hl; uint16_t hh;
  /src/external/gpl3/binutils/dist/ld/
ldcref.c 407 struct bfd_link_hash_entry *hl; local
410 hl = bfd_link_hash_lookup (link_info.hash, h->root.string, false,
412 if (hl == NULL)
419 if (hl->type == bfd_link_hash_defined)
421 if (hl->u.def.section->output_section == NULL)
423 if (hl->u.def.section->owner != NULL
424 && (hl->u.def.section->owner->flags & DYNAMIC) != 0)
554 struct bfd_link_hash_entry *hl; local
561 hl = bfd_link_hash_lookup (link_info.hash, h->root.string, false,
563 if (hl == NULL
    [all...]
  /src/external/gpl3/binutils.old/dist/ld/
ldcref.c 407 struct bfd_link_hash_entry *hl; local
410 hl = bfd_link_hash_lookup (link_info.hash, h->root.string, false,
412 if (hl == NULL)
419 if (hl->type == bfd_link_hash_defined)
421 if (hl->u.def.section->output_section == NULL)
423 if (hl->u.def.section->owner != NULL
424 && (hl->u.def.section->owner->flags & DYNAMIC) != 0)
554 struct bfd_link_hash_entry *hl; local
561 hl = bfd_link_hash_lookup (link_info.hash, h->root.string, false,
563 if (hl == NULL
    [all...]
  /src/external/bsd/nsd/dist/
metrics.c 177 struct metrics_acceptlist* hl; local
245 hl = (struct metrics_acceptlist*)xalloc_zero(sizeof(*hl));
246 hl->metrics = metrics;
247 hl->ident = strdup(ip);
248 if(!hl->ident) {
251 free(hl);
254 hl->next = metrics->accept_list;
255 metrics->accept_list = hl;
257 hl->accept_fd = fd
    [all...]

Completed in 90 milliseconds

1 2 3 4