Home
last modified time | relevance | path

Searched refs:attcount (Results 1 – 9 of 9) sorted by relevance

/dports/mail/p5-MIME-Explode/MIME-Explode-0.39/
H A DExplode.pm134 my ($ph, $tmp, $exclude, $attcount, $checkhdr) = (0, 0, 0, 0, 0);
139 ($ph, $attcount, $exclude, $tmpbuff, $check_ctype, $ctlength, $ftmp) = (1, 0, 0, "", 1, 0, "");
210 $_[0]->{"$tree.$attcount"}->{'content-type'}->{value} = $res->[0];
211 $_[0]->{"$tree.$attcount"}->{'content-disposition'}->{filepath} = $filepath unless($res->[1]);
212 $attcount++;
/dports/science/pnetcdf/parallel-netcdf-1.8.1/src/utils/ncmpivalid/
H A Dncmpivalid.c351 MPI_Offset nvalues = attrp->nelems, esz, padding, bufremain, attcount; in val_get_NC_attrV() local
367 attcount = MIN(bufremain, esz * nvalues); in val_get_NC_attrV()
368 (void) memcpy(value, gbp->pos, attcount); in val_get_NC_attrV()
369 nvalues -= attcount/esz; in val_get_NC_attrV()
370 gbp->pos = (void *)((char *)gbp->pos + attcount); in val_get_NC_attrV()
371 value = (void *)((char *)value + attcount); in val_get_NC_attrV()
372 bufremain -= attcount; in val_get_NC_attrV()
/dports/textproc/sablotron/Sablot-1.0.3/src/engine/
H A Djsdom.cpp443 int attcount = NPDOM.getAttributeCount(np->node); in JS_PROP() local
444 for (int i = 0; i < attcount; i++) in JS_PROP()
813 int attcount = NPDOM.getAttributeCount(np->node); in JS_METHOD() local
817 for (int i = 0; i < attcount; i++) { in JS_METHOD()
850 int attcount = NPDOM.getAttributeCount(np->node); in JS_METHOD() local
853 for (int i = 0; i < attcount; i++) { in JS_METHOD()
884 int attcount = NPDOM.getAttributeCount(np->node); in JS_METHOD() local
887 for (int i = 0; i < attcount; i++) { in JS_METHOD()
H A Dsdom.cpp1265 const int attcount = e -> atts.number(); in SDOM_getAttributeNS() local
1266 for (int i = 0; i < attcount; i++) { in SDOM_getAttributeNS()
1333 const int attcount = e -> atts.number(); in SDOM_getAttributeNodeNS() local
1334 for (int i = 0; i < attcount; i++) { in SDOM_getAttributeNodeNS()
/dports/science/pnetcdf/parallel-netcdf-1.8.1/src/lib/
H A Dheader.c1315 MPI_Offset nbytes, padding, bufremain, attcount; in hdr_get_NC_attrV() local
1332 attcount = MIN(bufremain, nbytes); in hdr_get_NC_attrV()
1333 if (attcount != (size_t)attcount) in hdr_get_NC_attrV()
1335 memcpy(value, gbp->pos, (size_t)attcount); in hdr_get_NC_attrV()
1336 nbytes -= attcount; in hdr_get_NC_attrV()
1337 gbp->pos = (void *)((char *)gbp->pos + attcount); in hdr_get_NC_attrV()
1338 gbp->index += attcount; in hdr_get_NC_attrV()
1339 value = (void *)((char *)value + attcount); in hdr_get_NC_attrV()
1340 bufremain -= attcount; in hdr_get_NC_attrV()
/dports/science/pnetcdf/parallel-netcdf-1.8.1/src/utils/ncoffsets/
H A Dncoffsets.c1083 size_t nbytes, padding, bufremain, attcount; in hdr_get_NC_attrV() local
1092 attcount = MIN(bufremain, nbytes); in hdr_get_NC_attrV()
1093 memcpy(value, gbp->pos, (size_t)attcount); in hdr_get_NC_attrV()
1094 nbytes -= attcount; in hdr_get_NC_attrV()
1095 gbp->pos = (void *)((char *)gbp->pos + attcount); in hdr_get_NC_attrV()
1096 value = (void *)((char *)value + attcount); in hdr_get_NC_attrV()
1097 bufremain -= attcount; in hdr_get_NC_attrV()
/dports/science/netcdf/netcdf-c-4.7.4/ncdump/
H A Dncvalidator.c1327 long long nvalues, padding, bufremain, attcount; in val_get_NC_attrV() local
1338 attcount = MIN(bufremain, nvalues); in val_get_NC_attrV()
1339 (void) memcpy(value, gbp->pos, attcount); in val_get_NC_attrV()
1340 nvalues -= attcount; in val_get_NC_attrV()
1341 gbp->pos = (void *)((char *)gbp->pos + attcount); in val_get_NC_attrV()
1342 value = (void *)((char *)value + attcount); in val_get_NC_attrV()
1343 bufremain -= attcount; in val_get_NC_attrV()
/dports/audio/calf-lv2/calf-648f05e85287cf08af198bdd9e52baba95b502ec/src/
H A Dmodules_comp.cpp2501 attcount = 0; in transientdesigner_audio_module()
2666 attcount += 1; in process()
2669 && attcount >= srate / 100 in process()
2674 attcount = 0; in process()
2688 attcount = srate / 5; in set_sample_rate()
/dports/audio/calf-lv2/calf-648f05e85287cf08af198bdd9e52baba95b502ec/src/calf/
H A Dmodules_comp.h432 uint32_t attcount; variable