Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 25 of 95) sorted by relevance

1234

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1buf.c71 (*buf)->bound = NULL; in asn1buf_create()
80 buf->bound = code->data + code->length - 1; in asn1buf_wrap_data()
90 subbuf->bound = subbuf->base + length - 1; in asn1buf_imbed()
92 subbuf->bound = buf->bound; in asn1buf_imbed()
104 buf->next = subbuf->bound + 1; in asn1buf_sync()
124 if (length <= buf->bound - buf->next + 1) in asn1buf_skiptail()
130 if (buf->bound - buf->next + 1 <= 0) in asn1buf_skiptail()
245 remain = buf->bound - buf->next +1; in asn1buf_remains()
344 return buf->bound - buf->base + 1; in asn1buf_size()
351 else return buf->bound - buf->next + 1; in asn1buf_free()
[all …]
H A Dasn1buf.h9 char *base, *bound, *next; member
23 : ((buf)->bound - (buf)->base + 1))
32 : ((buf)->bound - (buf)->next + 1))
186 (((buf)->next > (buf)->bound) \
H A Dasn1_get.c35 buf->bound - buf->next + 1 <= 0) { in asn1_get_tag_2()
/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_common_functions.c49 sval_t bound; in match_strnlen() local
54 if (!get_implied_max(limit, &bound)) in match_strnlen()
56 if (sval_cmp(bound, ulong_max) == 0) in match_strnlen()
58 if (rl_to_sval(*rl, &fixed) && sval_cmp(fixed, bound) >= 0) { in match_strnlen()
59 *rl = alloc_rl(bound, bound); in match_strnlen()
63 bound.value++; in match_strnlen()
64 *rl = remove_range(*rl, bound, ulong_max); in match_strnlen()
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_ufs.c170 int level, bound, i, index; in sbmap() local
182 bound = UFS_NINDIR(SUPERBLOCK); in sbmap()
183 while (bn >= bound) { in sbmap()
185 bn -= bound; in sbmap()
186 bound *= UFS_NINDIR(SUPERBLOCK); in sbmap()
204 bound /= UFS_NINDIR(SUPERBLOCK); in sbmap()
205 index = (bn / bound) % UFS_NINDIR(SUPERBLOCK); in sbmap()
217 bound /= UFS_NINDIR(SUPERBLOCK); in sbmap()
218 index = (bn / bound) % UFS_NINDIR(SUPERBLOCK); in sbmap()
/illumos-gate/usr/src/lib/libmapmalloc/common/
H A Dtextmem.c214 align(size_t size, int bound) in align() argument
216 if (size < bound) in align()
217 return ((size_t)bound); in align()
219 return (size + bound - 1 - (size + bound - 1) % bound); in align()
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/
H A Dppsearch.c149 …!(fp->flags & INC_MEMBER(INC_PREFIX)) && fp->bound[INC_PREFIX] ? fp->bound[INC_PREFIX]->name : NiL, in search()
150 !(fp->flags & INC_MEMBER(INC_LOCAL)) && fp->bound[INC_LOCAL] ? fp->bound[INC_LOCAL]->name : NiL, in search()
151 …!(fp->flags & INC_MEMBER(INC_VENDOR)) && fp->bound[INC_VENDOR] ? fp->bound[INC_VENDOR]->name : NiL, in search()
152 !(fp->flags & INC_MEMBER(INC_STANDARD)) && (xp = fp->bound[INC_STANDARD]) ? xp->name : NiL, in search()
299 xp->bound[dp->index] = (struct ppfile*)ap; in search()
366 xp = fp->bound[index]; in search()
376 fp->bound[index] = xp = ppsetfile(pp.path); in search()
472 pp.member = (struct ppmember*)fp->bound[index]; in search()
515 fp->bound[index] = xp; in search()
519 fp->bound[INC_LOCAL] = xp; in search()
[all …]
/illumos-gate/usr/src/cmd/sendmail/db/
H A Ddb_int.h52 #define ALIGNP(value, bound) ALIGN((ALIGNTYPE)value, bound) argument
54 #define ALIGN(value, bound) (((value) + (bound) - 1) & ~((bound) - 1)) argument
/illumos-gate/usr/src/tools/smatch/src/smatch_data/db/
H A Dconstraints_required.schema4 bound varchar(256),
6 CONSTRAINT unique_row UNIQUE (data, op, bound)
/illumos-gate/usr/src/pkg/license_files/
H A Dlic_OSBL_preamble1 Some or all of the code in this package is subject to and you are bound
4 and you are bound by the applicable Sun Microsystems, Inc. Software License
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_usage.c333 bound->vmb_start = 0; in vmu_free_bound()
334 bound->vmb_end = 0; in vmu_free_bound()
335 bound->vmb_type = 0; in vmu_free_bound()
347 vmu_bound_t *bound; in vmu_free_object() local
351 vmu_free_bound(bound); in vmu_free_object()
577 vmu_bound_t *bound; in vmu_alloc_bound() local
587 bound->vmb_next = NULL; in vmu_alloc_bound()
588 bound->vmb_start = 0; in vmu_alloc_bound()
589 bound->vmb_end = 0; in vmu_alloc_bound()
590 bound->vmb_type = 0; in vmu_alloc_bound()
[all …]
/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.c26 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code…
27 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits…
28 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits));
56 …BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK; bound = (range >> kNumBitModelTotalBits) * ttt; if (co…
57 #define UPDATE_0_CHECK range = bound;
58 #define UPDATE_1_CHECK range -= bound; code -= bound;
173 UInt32 bound; in LzmaDec_DecodeReal() local
517 UInt32 bound; in LzmaDec_TryDummy() local
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm_upgrade.c304 rskip_bspace(char *bound, char *ptr) in rskip_bspace() argument
307 assert(bound); in rskip_bspace()
309 assert(bound <= ptr); in rskip_bspace()
310 assert(*bound != ' ' && *bound != '\t' && *bound != '\n'); in rskip_bspace()
313 for (; ptr > bound; ptr--) { in rskip_bspace()
/illumos-gate/usr/src/uts/common/disp/
H A Ddisp.c1205 int bound; in setbackdq() local
1224 bound = 1; in setbackdq()
1226 bound = 0; in setbackdq()
1231 else if (!bound) { in setbackdq()
1338 if (!bound) in setbackdq()
1372 (*disp_enq_thread)(cp, bound); in setbackdq()
1390 int bound; in setfrontdq() local
1406 bound = 1; in setfrontdq()
1408 bound = 0; in setfrontdq()
1413 else if (!bound) { in setfrontdq()
[all …]
/illumos-gate/usr/src/stand/lib/sock/
H A Dsocket.c562 sockets[k].bound) { in bind_check()
589 if (sockets[i].bound) { in bind()
592 sockets[i].bound = B_FALSE; in bind()
604 if (sockets[i].bound) { in bind()
628 sockets[i].bound = B_TRUE; in bind()
658 sockets[sock_id].bound = B_TRUE; in quickbind()
748 if (!sockets[sock_id].bound) { in connect()
1090 if (sockets[i].bound == B_FALSE && in dgram_sendto()
H A Dsocket_impl.h128 boolean_t bound; /* boolean */ member
/illumos-gate/usr/src/uts/sun4u/os/
H A Dmach_startup.c348 cpu_wakeup(cpu_t *cpu, int bound) in cpu_wakeup() argument
385 if (bound) in cpu_wakeup()
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c696 int bound; member
812 while (s->bound || s->blocks.head != NULL) in sbarrier()
1109 int bound; in runstreams() local
1113 bound = 0; in runstreams()
1115 if (s->bound || s->blocks.head == NULL) in runstreams()
1117 s->bound = 1; in runstreams()
1118 bound = 1; in runstreams()
1137 s->bound = 0; in runstreams()
1140 if (!bound && !threads_stop) in runstreams()
1253 if (!s->bound) in decompress_pages()
/illumos-gate/usr/src/uts/sun4v/os/
H A Dmach_startup.c225 cpu_wakeup(cpu_t *cpu, int bound) in cpu_wakeup() argument
262 if (bound) in cpu_wakeup()
/illumos-gate/usr/src/lib/libc/port/threads/
H A Ddoor_calls.c586 int bound = 0; in door_xcreate_n() local
714 bound++; in door_xcreate_n()
717 if (bound == n) { in door_xcreate_n()
/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/
H A DMakefile32 OBJS = adopt.o agent.o async.o bound.o class_id.o defaults.o inform.o \
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Danalyze.c2968 uint_t bound; in _lookup_sym() local
2976 bound = sip->si_boundto; in _lookup_sym()
2982 (bound > SYMINFO_BT_LOWRESERVE)) { in _lookup_sym()
2983 if (bound == SYMINFO_BT_PARENT) in _lookup_sym()
2985 if (bound == SYMINFO_BT_EXTERN) in _lookup_sym()
2999 if (bound < SYMINFO_BT_LOWRESERVE) in _lookup_sym()
3000 lmp = elf_lazy_load(clmp, slp, bound, in _lookup_sym()
3336 relocate_finish(Rt_map *lmp, APlist *bound, int ret) in relocate_finish() argument
3343 if (bound) { in relocate_finish()
3361 for (APLIST_TRAVERSE(bound, idx, _lmp)) { in relocate_finish()
[all …]
/illumos-gate/usr/src/cmd/ldap/common/
H A Dldaptest.c268 int bound, all, scope, attrsonly; in main() local
385 bound = 0; in main()
456 bound = 1; in main()
505 bound = 1; in main()
517 bound = 1; in main()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/edit/
H A Dvi.c1606 register int bound = 0; in mvcursor() local
1725 bound = last_virt; in mvcursor()
1734 bound = last_virt; in mvcursor()
1746 bound = last_virt; in mvcursor()
1760 while( incr*(tcur_virt+=incr) <= bound in mvcursor()
1762 if( incr*tcur_virt > bound ) in mvcursor()
1786 bound = last_virt; in mvcursor()
1792 while(count >0 && incr*(tcur_virt+=incr) <= bound) in mvcursor()
/illumos-gate/usr/src/uts/common/os/
H A Dcyclic.c1558 cyclic_pick_cpu(cpupart_t *part, cpu_t *bound, cpu_t *avoid, uint16_t flags) in cyclic_pick_cpu() argument
1564 CYC_PTRACE("pick-cpu", part, bound); in cyclic_pick_cpu()
1566 ASSERT(!(flags & CYF_CPU_BOUND) || bound != NULL); in cyclic_pick_cpu()
1575 CYC_PTRACE("pick-cpu-bound", bound, avoid); in cyclic_pick_cpu()
1577 if ((flags & CYF_PART_BOUND) && bound->cpu_part != part) in cyclic_pick_cpu()
1581 if (bound == avoid) in cyclic_pick_cpu()
1584 if (bound->cpu_cyclic == NULL) in cyclic_pick_cpu()
1588 return (bound->cpu_cyclic); in cyclic_pick_cpu()
1592 CYC_PTRACE("pick-part-bound", bound, avoid); in cyclic_pick_cpu()

1234