Home
last modified time | relevance | path

Searched full:lb (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/freebsd/stand/kboot/libkboot/
H A Ddfk.c65 lb_fill(struct line_buffer *lb) in lb_fill() argument
69 lb->pos = lb->eos = lb->buf; // Reset to no data condition in lb_fill()
70 rv = read(lb->fd, lb->buf, sizeof(lb->buf)); in lb_fill()
73 lb->pos = lb->buf; in lb_fill()
74 lb->eos = lb->buf + rv; in lb_fill()
79 lb_fini(struct line_buffer *lb) in lb_fini() argument
81 close(lb->fd); in lb_fini()
86 lb_init(struct line_buffer *lb, const char *fn) in lb_init() argument
88 lb->fd = open(fn, O_RDONLY); in lb_init()
89 if (lb->fd == -1) in lb_init()
[all …]
/freebsd/usr.sbin/fdcontrol/
H A Dfdcontrol.8118 lB lB lB lB lB lB lB
134 lB lB lB lB lB lB lB
153 lB lB lB lB lB lB lB
163 lB lB lB lB lB lB lB
/freebsd/crypto/openssl/crypto/rc4/asm/
H A Drc4-586.pl87 &add (&LB($yy),&LB($tx));
92 &inc (&LB($xx));
115 &add (&LB($yy),&LB($tx));
125 &add (&LB($ty),&LB($tx));
141 &add (&LB($yy),&LB($tx));
148 &movz ($xx,&LB($xx)); # (*)
149 &movz ($ty,&LB($ty)); # (*)
178 &mov (&LB($xx),&BP(0,$dat)); # load key->x
179 &mov (&LB($yy),&BP(4,$dat)); # load key->y
186 &inc (&LB($xx));
[all …]
/freebsd/contrib/ncurses/man/
H A Dcurs_add_wch.3x128 Lb Lb Lb Lb Lb
129 Lb Lb Lb Lb Lb
198 Lb Lb Lb Lb Lb
199 Lb Lb Lb Lb Lb
242 Lb Lb Lb Lb Lb
243 Lb Lb Lb Lb Lb
/freebsd/lib/libc/nameser/
H A Dns_samedomain.c50 size_t la, lb; in ns_samedomain() local
55 lb = strlen(b); in ns_samedomain()
74 if (lb != 0U && b[lb - 1] == '.') { in ns_samedomain()
76 /* note this loop doesn't get executed if lb==1 */ in ns_samedomain()
77 for (i = lb - 2; i >= 0; i--) in ns_samedomain()
86 lb--; in ns_samedomain()
89 /* lb == 0 means 'b' is the root domain, so 'a' must be in 'b'. */ in ns_samedomain()
90 if (lb == 0U) in ns_samedomain()
94 if (lb > la) in ns_samedomain()
98 if (lb == la) in ns_samedomain()
[all …]
/freebsd/lib/libc/riscv/string/
H A Dmemcpy.S39 lb t3, 6(a1)
41 lb t3, 5(a1)
43 lb t3, 4(a1)
45 lb t3, 3(a1)
47 lb t3, 2(a1)
49 lb t3, 1(a1)
51 lb t3, 0(a1)
131 lb t2, 6(a1)
133 lb t2, 5(a1)
135 lb t2, 4(a1)
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Daggsum.c132 int64_t lb; in aggsum_value() local
136 lb = as->as_lower_bound; in aggsum_value()
138 if (lb == ub) { in aggsum_value()
144 return (lb); in aggsum_value()
151 lb += asb->asc_delta + asb->asc_borrowed; in aggsum_value()
157 ASSERT3U(lb, ==, ub); in aggsum_value()
158 atomic_store_64((volatile uint64_t *)&as->as_lower_bound, lb); in aggsum_value()
159 atomic_store_64(&as->as_upper_bound, lb); in aggsum_value()
162 return (lb); in aggsum_value()
215 int64_t lb; in aggsum_compare() local
[all …]
/freebsd/contrib/nvi/vi/
H A Dv_txt.c302 BINC_RETW(sp, tp->lb, tp->lb_len, len); in v_txt()
303 MEMMOVE(tp->lb, lp, len); in v_txt()
368 tp->lb[tp->cno++] = prompt; in v_txt()
384 tp->lb[tp->cno] = CH_CURSOR; in v_txt()
739 for (p = tp->lb + tp->cno; owrite > 0 && isblank(*p); in v_txt()
745 p = tp->lb + tp->cno + owrite; in v_txt()
780 FREE_SPACEW(sp, ait.lb, ait.lb_len); in v_txt()
799 BINC_GOTOW(sp, ntp->lb, in v_txt()
801 MEMMOVE(ntp->lb + ntp->cno, wmt.lb, WMTSPACE); in v_txt()
812 BINC_GOTOW(sp, ntp->lb, ntp->lb_len, ntp->len + 1); in v_txt()
[all …]
/freebsd/sys/netlink/
H A Dnetlink_snl.h82 struct linear_buffer *lb = (struct linear_buffer *)calloc(1, size); in lb_init() local
84 if (lb != NULL) { in lb_init()
85 lb->base = (char *)(lb + 1); in lb_init()
86 lb->size = size - sizeof(*lb); in lb_init()
89 return (lb); in lb_init()
93 lb_free(struct linear_buffer *lb) in lb_free() argument
95 free(lb); in lb_free()
99 lb_allocz(struct linear_buffer *lb, int len) in lb_allocz() argument
102 if (lb->offset + len > lb->size) in lb_allocz()
104 char *data = (lb->base + lb->offset); in lb_allocz()
[all …]
H A Dnetlink_message_parser.h47 lb_alloc(struct linear_buffer *lb, int len) in lb_alloc() argument
50 if (lb->offset + len > lb->size) in lb_alloc()
52 void *data = (void *)(lb->base + lb->offset); in lb_alloc()
53 lb->offset += len; in lb_alloc()
58 lb_clear(struct linear_buffer *lb) in lb_clear() argument
60 memset(lb->base, 0, lb->size); in lb_clear()
61 lb->offset = 0; in lb_clear()
67 struct linear_buffer lb; /* Per-message scratch buffer */ member
81 return (lb_alloc(&npt->lb, len)); in npt_alloc()
/freebsd/usr.bin/units/
H A Ddefinitions.units153 lb .45359237 kg
154 pound lb
155 lbf lb g
156 ounce 1|16 lb
160 grain 1|7000 lb
162 shortton 2000 lb
164 longton 2240 lb
241 brhundredweight 112 lb
606 bag 94 lb
633 cental 100 lb
[all …]
/freebsd/contrib/nvi/ex/
H A Dex_txt.c144 BINC_GOTOW(sp, tp->lb, tp->lb_len, tp->len + 1); in ex_txt()
167 tp->len != 0 && tp->lb[tp->len - 1] == '\\') in ex_txt()
177 tp->lb[tp->len] = '\0'; in ex_txt()
186 tp->lb[tp->len - 1] == '.') { in ex_txt()
211 free(ait.lb); in ex_txt()
245 if (!isblank(tp->lb[cnt])) in ex_txt()
249 tp->lb[0] = ev.e_c; in ex_txt()
250 tp->lb[1] = '\0'; in ex_txt()
288 ait.lb = NULL; in ex_txt()
290 BINC_GOTOW(sp, ait.lb, ait.lb_len, tp->ai); in ex_txt()
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_shift.c107 unsigned int lb, rb; in bn_lshift_fixed_top() local
121 lb = (unsigned int)n % BN_BITS2; in bn_lshift_fixed_top()
122 rb = BN_BITS2 - lb; in bn_lshift_fixed_top()
131 m = l << lb; in bn_lshift_fixed_top()
135 t[0] = (l << lb) & BN_MASK2; in bn_lshift_fixed_top()
179 unsigned int lb, rb; in bn_rshift_fixed_top()
193 lb = BN_BITS2 - rb; in bn_rshift_fixed_top()
194 lb %= BN_BITS2; /* say no to undefined behaviour */ in bn_rshift_fixed_top()
195 mask = (BN_ULONG)0 - lb; /* mask = 0 - (lb ! in bn_rshift_fixed_top()
176 unsigned int lb, rb; bn_rshift_fixed_top() local
[all...]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_gsupport.cpp602 int func(long lb, long ub, long str, long chunk_sz, long *p_lb, \
611 func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz 0x%lx\n", \
612 gtid, lb, ub, str, chunk_sz)); \
614 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
617 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
643 int func(long lb, long ub, long str, long *p_lb, long *p_ub) { \
651 (KMP_STR(func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz %d\n", \
652 gtid, lb, ub, str, chunk_sz)); \
654 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
657 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
[all …]
H A Dkmp_dispatch.cpp174 // type of schedule,chunk. The loop description is found in lb (lower bound),
186 enum sched_type schedule, T lb, T ub, in __kmp_dispatch_init_algorithm() argument
209 "pr:%%p lb:%%%s ub:%%%s st:%%%s " in __kmp_dispatch_init_algorithm()
214 KD_TRACE(10, (buff, gtid, pr, lb, ub, st, schedule, chunk, nproc, tid)); in __kmp_dispatch_init_algorithm()
382 if (ub >= lb) { in __kmp_dispatch_init_algorithm()
383 tc = ub - lb + 1; in __kmp_dispatch_init_algorithm()
384 } else { // ub < lb in __kmp_dispatch_init_algorithm()
388 if (lb >= ub) { in __kmp_dispatch_init_algorithm()
391 tc = (UT)(lb - ub) / (-st) + 1; in __kmp_dispatch_init_algorithm()
392 } else { // lb < ub in __kmp_dispatch_init_algorithm()
[all …]
/freebsd/tools/tools/netmap/
H A DMakefile5 PROGS = pkt-gen nmreplay bridge lb
34 lb: lb.o pkt_hash.o target
35 $(CC) $(CFLAGS) -o lb lb.o pkt_hash.o $(LDFLAGS)
/freebsd/usr.bin/vgrind/
H A Dvgrindefs.src31 :bb={:be=}:cb=/*:ce=*/:sb=":se=\e":lb=':\
41 :cb=\$:ce=\$|$:sb=":se=":lb=':le=\a|$:\
67 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
74 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
96 :sb=":se=\e":lb=':le=\e':tl:\
107 :sb=":se=\e":lb=':le=\e':oc:\
127 :cb=/*:ce=*/:sb=":se=\e":lb=':le=\e':tl:\
134 :ae=$:sb=":se=\e":lb=':\
151 :sb=":se=(\e"|$):lb=':le=(\e'|$):\
/freebsd/sys/sys/
H A Dstats.h222 struct voistatdata_numeric lb; member
231 struct voistatdata_numeric lb; member
240 struct voistatdata_numeric lb, ub; member
249 struct voistatdata_numeric lb, ub; member
367 struct voistatdata_numeric lb; member
384 struct voistatdata_numeric lb, ub; member
510 .lb = stats_ctor_vsd_numeric(lbd), \
515 #define STATS_VSS_CRHIST32_LIN(lb, ub, stepinc, vsdflags) \ argument
517 BKT_LIN, vsdflags, lb, ub, HIST_HLPR_INFO_LIN_FIELDS(stepinc)))
518 #define STATS_VSS_CRHIST64_LIN(lb, ub, stepinc, vsdflags) \ argument
[all …]
/freebsd/sys/dev/hwpmc/
H A Dhwpmc_logging.c351 struct pmclog_buffer *lb; in pmclog_loop() local
399 lb = NULL; in pmclog_loop()
416 if (lb == NULL) { /* look for a fresh buffer to write */ in pmclog_loop()
418 if ((lb = TAILQ_FIRST(&po->po_logbuffers)) == NULL) { in pmclog_loop()
430 TAILQ_REMOVE(&po->po_logbuffers, lb, plb_next); in pmclog_loop()
438 lb->plb_base, lb->plb_ptr); in pmclog_loop()
441 aiov.iov_base = lb->plb_base; in pmclog_loop()
442 aiov.iov_len = nbytes = lb->plb_ptr - lb->plb_base; in pmclog_loop()
476 PMCLOG_RESET_BUFFER_DESCRIPTOR(lb); in pmclog_loop()
478 pmc_plb_rele(lb); in pmclog_loop()
[all …]
/freebsd/crypto/openssl/crypto/des/asm/
H A Dcrypt586.pl114 &movb( &LB($tmp1), &LB($u) );
115 &movb( &LB($tmp2), &HB($u) );
119 &movb( &LB($tmp1), &LB($t) );
121 &movb( &LB($tmp2), &HB($t) );
124 &movb( &LB($tmp1), &HB($u) );
127 &movb( &LB($tmp2), &HB($t) );
/freebsd/contrib/ncurses/include/
H A DCaps.hpux11247 #%Lb Cb S Lb
248 #%Lb Lb Lb Lb
296 #%Lb Cb S Lb
297 #%Lb Lb Lb Lb
330 #%Lb Cb S Lb
331 #%Lb Lb Lb Lb
358 #%Lb Cb S Lb
359 #%Lb Lb Lb Lb
763 #%Lb Cb S Lb
764 #%Lb Lb Lb Lb
[all …]
H A DCaps247 #%Lb Cb S Lb
248 #%Lb Lb Lb Lb
295 #%Lb Cb S Lb
296 #%Lb Lb Lb Lb
328 #%Lb Cb S Lb
329 #%Lb Lb Lb Lb
356 #%Lb Cb S Lb
357 #%Lb Lb Lb Lb
755 #%Lb Cb S Lb
756 #%Lb Lb Lb Lb
[all …]
H A DCaps.keys250 #%Lb Cb S Lb
251 #%Lb Lb Lb Lb
298 #%Lb Cb S Lb
299 #%Lb Lb Lb Lb
331 #%Lb Cb S Lb
332 #%Lb Lb Lb Lb
359 #%Lb Cb S Lb
360 #%Lb Lb Lb Lb
846 #%Lb Cb S Lb
847 #%Lb Lb Lb Lb
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Dv3-v360epc-pci.txt44 0x60000000 0 0x01000000 /* 16 MiB @ LB 60000000 */
46 0x40000000 0 0x10000000 /* 256 MiB @ LB 40000000 1:1 */
48 0x50000000 0 0x10000000>; /* 256 MiB @ LB 50000000 1:1 */
50 0x20000000 0 0x20000000 /* 512 MB @ LB 20000000 1:1 */
52 0x80000000 0 0x40000000>; /* 1GB @ LB 80000000 */
H A Dv3,v360epc-pci.yaml72 ranges = <0x01000000 0 0x00000000 0x60000000 0 0x01000000>, /* 16 MiB @ LB 60000000 */
73 … <0x02000000 0 0x40000000 0x40000000 0 0x10000000>, /* 256 MiB @ LB 40000000 1:1 */
74 … <0x42000000 0 0x50000000 0x50000000 0 0x10000000>; /* 256 MiB @ LB 50000000 1:1 */
75 …dma-ranges = <0x02000000 0 0x20000000 0x20000000 0 0x20000000>, /* EBI: 512 MB @ LB 20000000 1:1 */
76 … <0x02000000 0 0x80000000 0x80000000 0 0x40000000>; /* CM alias: 1GB @ LB 80000000 */

12345678910>>...15