Searched refs:fixed (Results 1 - 24 of 24) sorted by relevance

/ast/src/cmd/dsslib/ip_t/
H A Dbgpsize.c34 unsigned int fixed; local
39 fixed = offsetof(Bgproute_t, pad);
40 if (!(pad = ALIGN - fixed % ALIGN))
42 data = TOTAL - (fixed + pad);
/ast/src/lib/libast/tm/
H A Dtmzone.c55 static Tm_zone_t fixed; local
59 if ((*name == '+' || *name == '-') && (fixed.west = tmgoff(name, &e, TM_LOCALZONE)) != TM_LOCALZONE && !*e)
61 strlcpy(fixed.standard = fixed.daylight = off, name, sizeof(off));
66 return &fixed;
/ast/src/cmd/dsslib/flat/
H A DMakefile15 data/ff-txt.dss data/fixed-bad.dat data/fixed.dat \
16 data/fixed.dss data/fixedmax.dat data/fixedmax.dss \
H A Dflat.c30 "that describes fixed-width and/or field-delimited flat files. Public "
33 "[b!:binary?Enable the fixed binary record field optimization.]"
46 "[s:struct?Print the fixed width record schema C \bstruct\b on the standard"
124 size_t truncate; /* fixed width before truncation*/
201 size_t fixed; /* fixed size */ member in struct:Size_s
241 size_t fixed; member in struct:Flat_s
261 int fixed; member in struct:Flat_s::__anon91
556 (*r->dss->disc->errorf)(r->dss, r->dss->disc, 1, "%s%s: variable field width %d exceeds fixed maximum %d -- maximum assumed", cxlocation(r->cx, r->record), w->field->variable.name, n, w->field->physical.format.width);
562 if (!flat->fixed)
3129 int fixed; local
3379 int fixed; local
3587 (*disc->errorf)(NiL, disc, 1, "%s: record has %u unused pad byte%s", flat->meth.name, fixed, fixed == 1 ? "" : "s"); local
3734 (*disc->errorf)(NiL, disc, 1, "%s: record has %u unused pad byte%s", flat->meth.name, fixed, fixed == 1 ? "" : "s"); local
3894 int fixed; local
[all...]
/ast/src/cmd/dsslib/netflow/
H A DMakefile8 flow-dump.c flow-dumpv9.c flow-fixed.c flow-flat.c flow-tool.c \
/ast/src/lib/librecsort/
H A Drskeydump.c76 if (kp->fixed)
77 sfprintf(sp, " fixed=%d", kp->fixed);
H A Drskey.c1025 if (n != kp->fixed && kp->fixed)
1028 (*kp->keydisc->errorf)(kp, kp->keydisc, 2, "%s: fixed record length mismatch -- %d expected", key, kp->fixed);
1032 kp->fixed = n;
1046 if (n != kp->fixed && kp->fixed)
1049 (*kp->keydisc->errorf)(kp, kp->keydisc, 2, "%s: fixed record key length mismatch -- %d expected", key, kp->fixed);
1053 kp->fixed
[all...]
H A Drecsort.h113 size_t fixed; /* fixed record size */ member in struct:_rskey_s
180 #define RS_KSAMELEN 000010 /* key has fixed length */
181 #define RS_DSAMELEN 000020 /* data has fixed length */
/ast/src/cmd/sort/
H A Dmain.c62 "fixed record length \areclen\a, and the last form specifies a fixed "
96 "for \bv\b variable length and \bf\b fixed length format "
788 key->fixed = REC_F_SIZE(key->disc->data);
853 size_t fixed; local
910 fixed = key->fixed;
916 if (fixed)
917 x += fixed - x % fixed;
[all...]
/ast/src/cmd/ksh93/
H A DMakefile35 SHOPT_FIXEDARRAY == 1 /* fixed dimension indexed array */
/ast/src/cmd/dsslib/bgp/
H A DMakefile9 bgp-fixed.c bgp-cisco.c bgp-ciscov6.c \
/ast/src/cmd/ksh93/sh/
H A Darray.c76 # define array_fixed_data(ap) ((ap)?((struct fixed_array*)((ap)->fixed))->data:0)
103 else if(fp = (struct fixed_array*)ap->fixed)
107 aq->fixed = (void*)fp;
144 return (ap->header.fixed || ((ap->cur<aq->maxi) && aq->val[ap->cur].cp));
218 else if(fp = (struct fixed_array*)arp->fixed)
279 struct fixed_array *fp=(struct fixed_array*)(arp->fixed);
292 nv_putsub(np, NIL(char*), ARRAY_SCAN|ARRAY_NOSCOPE|(ap->header.fixed?(ARRAY_UNDEF|ARRAY_FIXED):0));
581 if(ap->fixed && nv_isattr(np,NV_INT16P) == NV_INT16)
616 int xfree = (ap->fixed||is_associative(ap))?0:array_isbit(aq->bits,aq->cur,ARRAY_NOFREE);
668 else if(fp=(struct fixed_array*)ap->fixed)
[all...]
H A Dnvtree.c419 int fixed=0; local
505 if(ap && ap->fixed)
506 fixed++;
557 if(fixed)
645 if(ep==Empty && !(ap && ap->fixed))
780 if((ap=nv_arrayptr(np)) && ap->fixed)
H A Dname.c410 if(ap && ap->fixed)
416 if(!(arg->argflag&ARG_APPEND) && (!ap || !ap->fixed))
455 if(!nv_isarray(np) || ((ap=nv_arrayptr(np)) && !ap->fixed && (ap->nelem&ARRAY_MASK)))
1027 int fixed; local
1045 fixed = 0;
1046 if((ap=nv_arrayptr(np)) && ap->fixed)
1047 fixed = 1;
1070 if(fixed)
1081 if(fixed)
1142 else if(n==0 && !fixed
[all...]
H A Darith.c170 cp = nv_endsubscript(np,sub,NV_ADD|NV_SUBQUOTE|(ap&&ap->fixed?NV_FARRAY:0));
H A Dnvtype.c225 if((ap=nv_arrayptr(np)) && ap->fixed)
/ast/src/cmd/jcl/
H A Dcpy2dss.c63 "[r:reclen|record-length?Sets the physical record format to be fixed"
160 size_t fixed; member in struct:State_s
659 i = state.sized && !state.text && state.fixed;
671 if (i && offset > state.fixed)
674 error(1, "accumulated field sizes %lu exceeds fixed record size %lu", offset, state.fixed);
677 if ((n = member->width - (offset - state.fixed)) > 0)
679 error(1, "%s: maximum variable field size shortened from %d to %ld to comply with fixed record size %u", member->name, member->width, n, state.fixed);
703 if (state.fixed)
[all...]
/ast/src/cmd/sortlib/sync/
H A Dsync.c74 "[R:reclen|lrecl?Sets the fixed record length to \areclen\a.]#[reclen]"
438 if (opt_info.num != key->fixed && key->fixed)
441 (*ssdisc->errorf)(NiL, ssdisc, 2, "%d: fixed record length mismatch -- %d expected", (int)opt_info.num, key->fixed);
444 key->fixed = opt_info.num;
519 else if (key->fixed)
521 ss->size = key->fixed;
/ast/src/cmd/ksh93/include/
H A Dnval.h95 void *fixed; /* for fixed sized arrays */ member in struct:Namarray
158 #define NV_BINARY 0x100 /* fixed size data buffer */
/ast/src/lib/libz/
H A Dinfback.c65 fixed code decoding. Normally this returns fixed tables from inffixed.h.
79 static code fixed[544]; local
81 /* build fixed huffman tables if first call (may not be thread safe) */
92 next = fixed;
299 case 1: /* fixed block */
301 Tracev((stderr, "inflate: fixed codes block%s\n",
H A Dinflate.c24 * - Correct filename to inffixed.h for fixed tables in inflate.c
197 fixed code decoding. Normally this returns fixed tables from inffixed.h.
211 static code fixed[544]; local
213 /* build fixed huffman tables if first call (may not be thread safe) */
224 next = fixed;
275 puts(" /* inffixed.h -- table for decoding fixed codes");
790 case 1: /* fixed block */
792 Tracev((stderr, "inflate: fixed codes block%s\n",
/ast/src/lib/libpz/
H A Dpzpart.c196 * add fixed column range value to pz
200 fixed(Pz_t* pz, register Pzpart_t* pp, int n, int m, int k) function
464 if (pp && fixed(pz, pp, n, x, k))
916 if (fixed(pz, pp, n, x, k))
/ast/src/cmd/sortlib/sum/
H A Dsortsum.c64 "fixed width field starting at byte position 2 (counting from 1) "
65 "and computes the sum of the integers in the 2 byte fixed width "
111 int fixed; member in struct:Summary_s
/ast/src/cmd/ksh93/bltins/
H A Dtypeset.c1239 if((ap=nv_arrayptr(np)) && !ap->fixed && name[strlen(name)-1]==']' && !nv_getsub(np))

Completed in 69 milliseconds