| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| array-bounds.f90 | 18 integer(8) :: lb, ub variable 21 lb = lbound (foo, dim = 1, kind = 8) 23 print *, 'bounds of foo - ', lb, ':', ub
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| array-bounds.f90 | 18 integer(8) :: lb, ub variable 21 lb = lbound (foo, dim = 1, kind = 8) 23 print *, 'bounds of foo - ', lb, ':', ub
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| gdb_binary_search.h | 48 auto lb = std::lower_bound (first, last, el, lt); local 49 if (lb != last) 51 if (comp (*lb, el) == 0) 52 return lb;
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| gdb_binary_search.h | 48 auto lb = std::lower_bound (first, last, el, lt); local 49 if (lb != last) 51 if (comp (*lb, el) == 0) 52 return lb;
|
| /src/external/bsd/libbind/dist/isc/ |
| bitncmp.c | 48 u_int lb, rb; local 56 lb = ((const u_char *)l)[b]; 59 if ((lb & 0x80) != (rb & 0x80)) { 60 if (lb & 0x80) 64 lb <<= 1;
|
| /src/common/lib/libc/arch/or1k/string/ |
| memcpy.c | 69 const unsigned long *lb = (const unsigned long *) (cb - offset); local 77 for (; la + 4 <= ea; la += 4, lb += 4) { 78 la[0] = lb[0]; 79 la[1] = lb[1]; 80 la[2] = lb[2]; 81 la[3] = lb[3]; 87 *la++ = *lb++; 92 unsigned long w1 = *lb++; 97 for (; la + 4 <= ea; la += 4, lb += 4) { 98 unsigned long w2 = lb[0] [all...] |
| /src/lib/libc/nameser/ |
| ns_samedomain.c | 60 size_t la, lb, i; local 65 lb = strlen(b); 84 if (lb != 0U && b[lb - 1] == '.') { 86 /* note this loop doesn't get executed if lb==1 */ 87 for (i = lb - 1; i > 0; i--) 96 lb--; 99 /* lb == 0 means 'b' is the root domain, so 'a' must be in 'b'. */ 100 if (lb == 0U) 104 if (lb > la [all...] |
| /src/external/bsd/libbind/dist/nameser/ |
| ns_samedomain.c | 54 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 > la [all...] |
| /src/usr.bin/error/ |
| filter.c | 141 int ub, lb; local 147 for (lb = 0, ub = nignored - 1; ub >= lb; ) { 148 halfway = (ub + lb)/2; 154 lb = halfway + 1;
|
| /src/crypto/external/apache2/openssl/dist/crypto/bn/ |
| bn_shift.c | 107 unsigned int lb, rb; local 121 lb = (unsigned int)n % BN_BITS2; 122 rb = BN_BITS2 - lb; 131 m = l << lb; 135 t[0] = (l << lb) & BN_MASK2; 179 unsigned int lb, rb; local 193 lb = BN_BITS2 - rb; 194 lb %= BN_BITS2; /* say no to undefined behaviour */ 195 mask = (BN_ULONG)0 - lb; /* mask = 0 - (lb != 0) * [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/bn/ |
| bn_shift.c | 107 unsigned int lb, rb; local 121 lb = (unsigned int)n % BN_BITS2; 122 rb = BN_BITS2 - lb; 131 m = l << lb; 135 t[0] = (l << lb) & BN_MASK2; 179 unsigned int lb, rb; local 193 lb = BN_BITS2 - rb; 194 lb %= BN_BITS2; /* say no to undefined behaviour */ 195 mask = (BN_ULONG)0 - lb; /* mask = 0 - (lb != 0) * [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/cmac/ |
| cmac.c | 208 int i, bl, lb; local 218 lb = ctx->nlast_block; 220 if (lb == bl) { 224 ctx->last_block[lb] = 0x80; 225 if (bl - lb > 1) 226 memset(ctx->last_block + lb + 1, 0, bl - lb - 1);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/bn/ |
| bn_shift.c | 107 unsigned int lb, rb; local 121 lb = (unsigned int)n % BN_BITS2; 122 rb = BN_BITS2 - lb; 131 m = l << lb; 135 t[0] = (l << lb) & BN_MASK2; 176 unsigned int lb, rb; local 193 lb = BN_BITS2 - rb; 194 lb %= BN_BITS2; /* say no to undefined behaviour */ 195 mask = (BN_ULONG)0 - lb; /* mask = 0 - (lb != 0) * [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/cmac/ |
| cmac.c | 195 int i, bl, lb; local 202 lb = ctx->nlast_block; 204 if (lb == bl) { 208 ctx->last_block[lb] = 0x80; 209 if (bl - lb > 1) 210 memset(ctx->last_block + lb + 1, 0, bl - lb - 1);
|
| /src/external/gpl3/gcc/dist/libgfortran/runtime/ |
| ISO_Fortran_binding.c | 83 CFI_index_t lb = 1; local 86 lb = s->dim[n].lower_bound; 88 GFC_DESCRIPTOR_LBOUND(d, n) = (index_type)lb; 89 GFC_DESCRIPTOR_UBOUND(d, n) = (index_type)(s->dim[n].extent + lb - 1);
|
| /src/external/gpl3/gcc.old/dist/libgfortran/runtime/ |
| ISO_Fortran_binding.c | 83 CFI_index_t lb = 1; local 86 lb = s->dim[n].lower_bound; 88 GFC_DESCRIPTOR_LBOUND(d, n) = (index_type)lb; 89 GFC_DESCRIPTOR_UBOUND(d, n) = (index_type)(s->dim[n].extent + lb - 1);
|
| /src/lib/libm/src/ |
| s_fma.c | 153 double ha, hb, la, lb, p, q; local 163 lb = b - hb; 166 q = ha * lb + la * hb; 169 ret.lo = p - ret.hi + q + la * lb;
|
| s_fmal.c | 146 long double ha, hb, la, lb, p, q; local 156 lb = b - hb; 159 q = ha * lb + la * hb; 162 ret.lo = p - ret.hi + q + la * lb;
|
| /src/crypto/external/apache2/openssl/dist/crypto/cmac/ |
| cmac.c | 249 int i, bl, lb; local 259 lb = ctx->nlast_block; 261 if (lb == bl) { 265 ctx->last_block[lb] = 0x80; 266 if (bl - lb > 1) 267 memset(ctx->last_block + lb + 1, 0, bl - lb - 1);
|
| /src/external/bsd/nvi/dist/common/ |
| cut.h | 31 CHAR_T *lb; /* Line buffer. */ member in struct:_text
|
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| recode-sr-latin.c | 195 init_linebuffer (struct linebuffer *lb) 197 lb->size = 0; 198 lb->length = 0; 199 lb->buffer = NULL; 202 /* Read an arbitrarily long line of text from STREAM into linebuffer LB. 206 read_linebuffer (struct linebuffer *lb, FILE *stream) 212 char *p = lb->buffer; 213 char *end = lb->buffer + lb->size; 220 if (p == lb->buffer || ferror (stream) 256 struct linebuffer lb; local [all...] |
| /src/external/gpl2/xcvs/dist/src/ |
| log-buffer.c | 65 /* Force the existance of lb->log. 68 * lb The log buffer. 71 * lb->log The new FILE *. 72 * lb->back_fn The name of the new log, for later disposal. 75 * lb->log is NULL or, at least, does not require freeing. 76 * lb->back_fn is NULL or, at least, does not require freeing.. 83 * the error is fatal or not is dependent on lb->fatal_errors. 86 log_buffer_force_file (struct log_buffer *lb) 88 lb->log = cvs_temp_file (&lb->back_fn) 135 struct log_buffer *lb = xmalloc (sizeof *lb); local 215 struct log_buffer *lb = closure; local 268 struct log_buffer *lb = closure; local 321 struct log_buffer *lb = closure; local 341 struct log_buffer *lb = closure; local 357 struct log_buffer *lb = buf->closure; local 415 struct log_buffer *lb = buf->closure; local 457 struct log_buffer *lb = closure; local 467 struct log_buffer *lb = buf->closure; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| data-streamer-in.cc | 239 wide_int lb = streamer_read_wide_int (ib); local 241 int_range<2> tmp (type, lb, ub); 264 REAL_VALUE_TYPE lb, ub; local 265 streamer_read_real_value (ib, &lb); 267 r.set (type, lb, ub, nan);
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| decay.c | 266 size_t lb = 2; local 270 npurge_lb = decay_npurge_after_interval(decay, lb); 272 return decay_interval_ns * lb; 281 while ((npurge_lb + npages_threshold < npurge_ub) && (lb + 2 < ub)) { 282 target = (lb + ub) / 2; 288 lb = target; 294 return decay_interval_ns * (ub + lb) / 2;
|
| /src/external/bsd/jemalloc/dist/src/ |
| decay.c | 268 size_t lb = 2; local 272 npurge_lb = decay_npurge_after_interval(decay, lb); 274 return decay_interval_ns * lb; 283 while ((npurge_lb + npages_threshold < npurge_ub) && (lb + 2 < ub)) { 284 target = (lb + ub) / 2; 290 lb = target; 296 return decay_interval_ns * (ub + lb) / 2;
|