HomeSort by: relevance | last modified time | path
    Searched defs:sup (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPObjClass.h 24 StringList names, must, may, sup; member in class:LDAPObjClass
45 * "( SuSE.YaST.OC:5 NAME 'userTemplate' SUP objectTemplate STRUCTURAL
  /src/sys/arch/m68k/fpe/
fpu_subr.c 153 uint32_t m0, m1, m2, sup, nrm; local
181 sup = nrm << 1;
182 if (m0 >= sup) {
  /src/sys/arch/powerpc/fpu/
fpu_subr.c 139 u_int m0, m1, m2, m3, top, sup, nrm; local
164 sup = nrm << 1;
165 if (m0 >= sup) {
170 for (rsh = 1, top = m0 >> 1; top >= sup; rsh++) /* XXX slow */
  /src/sys/arch/sparc/fpu/
fpu_subr.c 145 u_int m0, m1, m2, m3, top, sup, nrm; local
170 sup = nrm << 1;
171 if (m0 >= sup) {
176 for (rsh = 1, top = m0 >> 1; top >= sup; rsh++) /* XXX slow */
  /src/external/bsd/openldap/dist/contrib/ldapc++/examples/
readSchema.cpp 58 StringList sup = test.getSup(); local
59 for( StringList::const_iterator i = sup.begin(); i != sup.end(); i++ ){
  /src/external/gpl2/groff/dist/src/preproc/eqn/
script.cpp 30 box *sup; member in class:script_box
43 of a list. For example, given `2x sup 3', the superscript should
46 box *make_script_box(box *nuc, box *sub, box *sup)
52 sup);
56 return new script_box(nuc, sub, sup);
60 : pointer_box(pp), sub(qq), sup(rr)
67 delete sup;
85 if (sup != 0)
86 sup->compute_metrics(script_style(style));
99 if (sup == 0)
    [all...]
  /src/sbin/fsck_lfs/
pass4.c 150 SEGUSE *sup; local
170 LFS_SEGENTRY(sup, fs, sn, bp);
171 sup->su_nbytes -= lfs_fsbtob(fs, 1);
setup.c 173 SEGUSE *sup; local
298 LFS_SEGENTRY(sup, fs, sn, bp);
299 isdirty = sup->su_flags & SEGUSE_DIRTY;
430 LFS_SEGENTRY(sup, fs, i, bp);
431 seg_table[i].su_flags = sup->su_flags & ~SEGUSE_ACTIVE;
433 seg_table[i].su_nbytes = sup->su_nbytes;
inode.c 490 SEGUSE *sup; local
494 LFS_SEGENTRY(sup, fs, oldsn, bp);
495 sup->su_nbytes -= DINOSIZE(fs);
496 LFS_WRITESEGENTRY(sup, fs, oldsn, bp); /* Ifile */
pass6.c 76 SEGUSE *sup; local
142 LFS_SEGENTRY(sup, fs, oldsn, bp);
144 sup->su_nbytes -= osize;
147 LFS_WRITESEGENTRY(sup, fs, oldsn, bp);
172 LFS_SEGENTRY(sup, fs, sn, bp);
174 sup->su_nbytes += size;
177 LFS_WRITESEGENTRY(sup, fs, sn, bp);
211 SEGUSE *sup; local
234 LFS_SEGENTRY(sup, fs, lfs_dtosn(fs, daddr), sbp);
235 sup->su_nbytes -= DINOSIZE(fs)
421 SEGUSE *sup; local
472 SEGUSE *sup; local
549 SEGUSE *sup; local
    [all...]
segwrite.c 247 SEGUSE *sup; local
357 LFS_SEGENTRY(sup, fs, oldsn, bp);
358 sup->su_nbytes -= DINOSIZE(fs);
363 LFS_WRITESEGENTRY(sup, fs, oldsn, bp); /* Ifile */
453 SEGUSE *sup; local
519 LFS_SEGENTRY(sup, fs, oldsn, bp);
520 sup->su_nbytes -= osize;
523 LFS_WRITESEGENTRY(sup, fs, oldsn, bp);
640 SEGUSE *sup; local
665 LFS_SEGENTRY(sup, fs, sp->seg_number, bp)
726 SEGUSE *sup; local
765 SEGUSE *sup; local
    [all...]
  /src/sys/fs/cd9660/
cd9660_vfsops.c 398 struct iso_supplementary_descriptor *sup; local
557 sup = (struct iso_supplementary_descriptor *)supbp->b_data;
559 if ((isonum_711(sup->flags) & 1) == 0) {
560 if (memcmp(sup->escape, "%/@", 3) == 0)
562 if (memcmp(sup->escape, "%/C", 3) == 0)
564 if (memcmp(sup->escape, "%/E", 3) == 0)
  /src/sys/netipsec/
key_debug.c 258 const struct sadb_supported *sup = (const struct sadb_supported *)ext; local
266 len = (PFKEY_UNUNIT64(sup->sadb_supported_len) - sizeof(*sup))
268 alg = (const void *)(sup + 1);
  /src/sys/ufs/lfs/
lfs_subr.c 427 SEGUSE *sup; local
440 LFS_SEGENTRY(sup, fs, i, bp);
441 if (sup->su_nbytes == 0) {
442 switch (sup->su_flags & (SEGUSE_ACTIVE
447 sup->su_flags |= SEGUSE_EMPTY;
452 sup->su_flags |= SEGUSE_READY;
465 lfs_markclean(fs, i, sup, NOCRED, curlwp);
474 LFS_WRITESEGENTRY(sup, fs, i, bp);
916 SEGUSE *sup; local
921 LFS_SEGENTRY(sup, fs, i, bp)
    [all...]
lfs_syscalls.c 853 SEGUSE *sup; local
861 LFS_SEGENTRY(sup, fs, segnum, bp);
862 if (sup->su_nbytes) {
864 " %d live bytes\n", segnum, sup->su_nbytes));
868 if (sup->su_flags & SEGUSE_ACTIVE) {
874 if (!(sup->su_flags & SEGUSE_DIRTY)) {
881 lfs_markclean(fs, segnum, sup, cred, l);
882 LFS_WRITESEGENTRY(sup, fs, segnum, bp);
888 lfs_markclean(struct lfs *fs, unsigned long segnum, SEGUSE *sup,
903 if (sup->su_flags & SEGUSE_SUPERBLOCK
    [all...]
lfs_inode.c 676 SEGUSE *sup; local
683 LFS_SEGENTRY(sup, fs, sd->segnum, bp);
686 if (sd->num > sup->su_nbytes) {
688 sd->segnum, (long)(sd->num - sup->su_nbytes));
690 sup->su_nbytes = sd->num;
692 sup->su_nbytes -= sd->num;
693 LFS_WRITESEGENTRY(sup, fs, sd->segnum, bp);
lfs_kclean.c 513 SEGUSE *sup; local
535 LFS_SEGENTRY(sup, fs, snn[i], bp);
536 if (sup->su_flags & SEGUSE_ACTIVE
537 || !(sup->su_flags & SEGUSE_DIRTY))
563 LFS_SEGENTRY(sup, fs, snn[i], bp);
564 if (sup->su_flags & SEGUSE_ACTIVE
565 || !(sup->su_flags & SEGUSE_DIRTY))
737 segselect_greedy(struct lfs *fs, int sn, SEGUSE *sup)
739 return lfs_sb_getssize(fs) - sup->su_nbytes;
743 segselect_cb_rosenblum(struct lfs *fs, int sn, SEGUSE *sup, long age
887 SEGUSE *sup; local
    [all...]
lfs_rfw.c 228 SEGUSE *sup; local
302 LFS_SEGENTRY(sup, fs, lfs_dtosn(fs, ndaddr), bp);
310 sup->su_nbytes += size;
311 LFS_WRITESEGENTRY(sup, fs, lfs_dtosn(fs, ndaddr), bp);
902 SEGUSE *sup; local
935 LFS_SEGENTRY(sup, fs, lfs_dtosn(fs, offset), bp);
936 if (!(sup->su_flags & SEGUSE_DIRTY))
938 sup->su_flags |= SEGUSE_DIRTY;
939 LFS_WRITESEGENTRY(sup, fs, lfs_dtosn(fs, offset), bp);
951 LFS_SEGENTRY(sup, fs, lfs_dtosn(fs, offset)
    [all...]
  /src/crypto/dist/ipsec-tools/src/libipsec/
key_debug.c 321 struct sadb_supported *sup = (void *)ext; local
329 len = (PFKEY_UNUNIT64(sup->sadb_supported_len) - sizeof(*sup))
331 alg = (void *)(sup + 1);
pfkey.c 176 setsupportedmap(struct sadb_supported *sup)
180 switch (sup->sadb_supported_exttype) {
195 *ipsup = malloc((size_t)sup->sadb_supported_len);
200 memcpy(*ipsup, sup, (size_t)sup->sadb_supported_len);
776 struct sadb_supported *sup; local
792 sup = (void *)p;
793 if (ep < p + sizeof(*sup) ||
794 PFKEY_EXTLEN(sup) < (int)sizeof(*sup) ||
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
atan.c 376 /* First, if |x| < 1, we need to have more prec to be able to round (sup)
378 mpfr_prec_t sup; local
379 sup = MPFR_GET_EXP (xp) < 0 ? 2 - MPFR_GET_EXP (xp) : 1; /* sup >= 1 */
381 n0 = MPFR_INT_CEIL_LOG2 ((realprec + sup) + 3);
383 prec = (realprec + sup) + 1 + MPFR_INT_CEIL_LOG2 (3*n0-2);
  /src/external/bsd/am-utils/dist/amq/
amq.c 769 amq_sync_umnt *sup; local
773 sup = amqproc_sync_umnt_1(&fs, clnt);
774 if (sup) {
776 print_umnt_error(sup, fs);
777 errs = amu_sync_umnt_to_retval(sup);
  /src/external/bsd/openldap/dist/servers/slapd/
schema_prep.c 280 ObjectClass *sup = oc->soc_sups[j]; local
284 if( sup == socs[k] ) {
295 socs[noc++] = sup;
342 "SUP top AUXILIARY )",
347 "SUP top STRUCTURAL "
353 "SUP top STRUCTURAL MUST ref )",
359 "SUP top STRUCTURAL MAY cn )",
364 "SUP top STRUCTURAL "
390 "SUP top AUXILIARY )",
397 "SUP top STRUCTURAL )"
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
block.h 266 const block *sup = superblock (); local
267 if (sup == nullptr)
269 return sup->is_global_block ();
  /src/external/gpl3/gdb/dist/gdb/
block.h 266 const block *sup = superblock (); local
267 if (sup == nullptr)
269 return sup->is_global_block ();

Completed in 33 milliseconds

1 2