Searched refs:lb (Results 1 - 25 of 85) sorted by relevance

1234

/freebsd-9.3-release/lib/libc/nameser/
H A Dns_samedomain.c54 size_t la, lb; local
59 lb = strlen(b);
78 if (lb != 0U && b[lb - 1] == '.') {
80 /* note this loop doesn't get executed if lb==1 */
81 for (i = lb - 2; i >= 0; i--)
90 lb--;
93 /* lb == 0 means 'b' is the root domain, so 'a' must be in 'b'. */
94 if (lb == 0U)
98 if (lb > l
[all...]
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_txt.c149 BINC_GOTO(sp, tp->lb, tp->lb_len, tp->len + 1);
172 tp->len != 0 && tp->lb[tp->len - 1] == '\\')
182 tp->lb[tp->len] = '\0';
191 tp->lb[tp->len - 1] == '.') {
215 free(ait.lb);
249 if (!isblank(tp->lb[cnt]))
253 tp->lb[0] = ev.e_c;
254 tp->lb[1] = '\0';
292 ait.lb = NULL;
294 BINC_GOTO(sp, ait.lb, ai
[all...]
H A Dex_subst.c324 REALLOC(sp, lb, char *, lblen); \
325 if (lb == NULL) { \
330 memcpy(lb + lbclen, l, len); \
337 REALLOC(sp, lb, char *, lblen); \
338 if (lb == NULL) { \
342 pnt = lb + lbclen; \
364 char *bp, *lb; local
491 * lb: build buffer pointer.
495 bp = lb = NULL;
663 ev.e_c = tiq.cqh_first->lb[
1342 char *lb; /* Local copies. */ local
[all...]
/freebsd-9.3-release/crypto/openssh/openbsd-compat/regress/
H A Dstrtonumtest.c41 test(const char *p, long long lb, long long ub, int ok) argument
46 val = strtonum(p, lb, ub, &q);
48 fprintf(stderr, "%s [%lld-%lld] ", p, lb, ub);
52 fprintf(stderr, "%s [%lld-%lld] %lld ", p, lb, ub, val);
/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_utable.c150 int lb; local
168 lb = 0;
171 while (ub > lb) {
172 mid = (lb + ub) / 2;
183 TRACE_T_BINSEARCH32(lb, ub, mid, code_start, code_end)
185 lb = mid + 1;
191 if (ub <= lb)
223 int lb; local
239 lb = 0;
242 while (ub > lb) {
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_shift.c129 int i, nw, lb, rb; local
145 lb = n % BN_BITS2;
146 rb = BN_BITS2 - lb;
150 if (lb == 0)
157 t[nw + i] = (l << lb) & BN_MASK2;
171 int i, j, nw, lb, rb; local
185 lb = BN_BITS2 - rb;
212 *(t++) = (tmp | (l << lb)) & BN_MASK2;
/freebsd-9.3-release/contrib/nvi/vi/
H A Dv_txt.c311 memmove(tp->lb, lp, len);
376 tp->lb[tp->cno++] = prompt;
392 tp->lb[tp->cno] = CH_CURSOR;
770 for (p = tp->lb + tp->cno; owrite > 0 && isblank(*p);
776 p = tp->lb + tp->cno + owrite;
810 FREE_SPACE(sp, ait.lb, ait.lb_len);
829 BINC_GOTO(sp, ntp->lb,
831 memmove(ntp->lb + ntp->cno, wmt.lb, WMTSPACE);
842 BINC_GOTO(sp, ntp->lb, nt
[all...]
H A Dv_at.c95 v_event_push(sp, NULL, tp->lb, tp->len, 0))
/freebsd-9.3-release/crypto/openssl/crypto/x509/
H A Dx509_cmp.c192 int la, lb; local
195 lb = b->length;
204 while (lb > 0 && isspace(*pb)) {
205 lb--;
212 while (lb > 0 && isspace(pb[lb - 1]))
213 lb--;
216 while (la > 0 && lb > 0) {
228 lb--;
230 if (la <= 0 || lb <
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/
H A Dtmdiff.c203 signed long long la, lb; local
205 signed _int64 la, lb; local
208 lb = b->ms_win32.dwHighDateTime;
210 lb <<= 32;
212 lb += b->ms_win32.dwLowDateTime;
213 ret = ((double)(lb - la)) / 1e7;
/freebsd-9.3-release/lib/libc/mips/string/
H A Dstrlen.S50 lb v0, 0(a0) # get byte from string
/freebsd-9.3-release/contrib/nvi/common/
H A Dput.c89 if (db_append(sp, 1, lno, tp->lb, tp->len))
103 if (db_append(sp, 1, lno, tp->lb, tp->len))
135 memcpy(t, tp->lb, tp->len);
192 memcpy(t, ltp->lb, ltp->len);
217 if (db_append(sp, 1, lno, tp->lb, tp->len))
H A Dcut.c269 memcpy(tp->lb, p + fcno, clen);
325 MALLOC(sp, tp->lb, CHAR_T *, tp->lb_len);
326 if (tp->lb == NULL) {
331 memcpy(tp->lb, p, len);
365 if (tp->lb != NULL)
366 free(tp->lb);
H A Dcut.h29 char *lb; /* Line buffer. */ member in struct:_text
/freebsd-9.3-release/sys/dev/hwpmc/
H A Dhwpmc_logging.c244 struct pmclog_buffer *lb; local
267 lb = NULL;
284 if (lb == NULL) { /* look for a fresh buffer to write */
286 if ((lb = TAILQ_FIRST(&po->po_logbuffers)) == NULL) {
306 TAILQ_REMOVE(&po->po_logbuffers, lb, plb_next);
314 lb->plb_base, lb->plb_ptr);
317 aiov.iov_base = lb->plb_base;
318 aiov.iov_len = nbytes = lb->plb_ptr - lb
647 struct pmclog_buffer *lb; local
698 struct pmclog_buffer *lb; local
[all...]
/freebsd-9.3-release/lib/msun/src/
H A Ds_fma.c140 double ha, hb, la, lb, p, q; local
150 lb = b - hb;
153 q = ha * lb + la * hb;
156 ret.lo = p - ret.hi + q + la * lb;
H A Ds_fmal.c136 long double ha, hb, la, lb, p, q; local
146 lb = b - hb;
149 q = ha * lb + la * hb;
152 ret.lo = p - ret.hi + q + la * lb;
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Drrl.c770 add_log_str(isc_buffer_t *lb, const char *str, unsigned int str_len) { argument
773 isc_buffer_availableregion(lb, &region);
780 isc_buffer_add(lb, str_len);
795 isc_buffer_t lb; local
807 isc_buffer_init(&lb, log_buf, log_buf_len-1);
810 add_log_str(&lb, str1, strlen(str1));
812 add_log_str(&lb, str2, strlen(str2));
818 ADD_LOG_CSTR(&lb, "drop ");
821 ADD_LOG_CSTR(&lb, "slip ");
832 ADD_LOG_CSTR(&lb, "referra
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/eqn/
H A Deqn.y133 list_box *lb = $1->to_list_box();
134 if (!lb)
135 lb = new list_box($1);
136 lb->append($2);
137 $$ = lb;
H A Dtext.cpp361 list_box *lb = 0; local
510 if (lb != 0)
511 lb->append(b);
513 lb = new list_box(fb);
514 lb->append(b);
521 if (lb != 0)
522 return lb;
/freebsd-9.3-release/usr.bin/lex/
H A Dnfa.c539 * new = mkrep( mach, lb, ub );
541 * new - a machine that matches whatever "mach" matched from "lb"
545 * if "ub" is INFINITY then "new" matches "lb" or more occurrences of "mach"
548 int mkrep( mach, lb, ub )
549 int mach, lb, ub;
553 base_mach = copysingl( mach, lb - 1 );
566 for ( i = lb; i < ub; ++i )
/freebsd-9.3-release/crypto/openssl/crypto/perlasm/
H A Dx86ms.pl7 %lb=( 'eax', 'al',
40 (defined($lb{$_[0]})) || die "$_[0] does not have a 'low byte'\n";
41 return($lb{$_[0]});
H A Dx86nasm.pl8 %lb=( 'eax', 'al',
43 (defined($lb{$_[0]})) || die "$_[0] does not have a 'low byte'\n";
44 return($lb{$_[0]});
/freebsd-9.3-release/sys/xdr/
H A Dxdr.c403 long lb; local
408 lb = *bp ? XDR_TRUE : XDR_FALSE;
409 return (XDR_PUTLONG(xdrs, &lb));
412 if (!XDR_GETLONG(xdrs, &lb)) {
415 *bp = (lb == XDR_FALSE) ? FALSE : TRUE;
/freebsd-9.3-release/crypto/openssl/crypto/bio/
H A Dbio_lib.c412 BIO *lb; local
416 lb = b;
417 while (lb->next_bio != NULL)
418 lb = lb->next_bio;
419 lb->next_bio = bio;
421 bio->prev_bio = lb;

Completed in 212 milliseconds

1234