Searched refs:av (Results 101 - 125 of 181) sorted by relevance

12345678

/openbsd-current/usr.sbin/relayd/
H A Drelayd.c1756 u_int32_t av[4], bv[4], mv[4]; local
1773 av[0] = a4->sin_addr.s_addr;
1778 if ((av[0] & mv[0]) > (bv[0] & mv[0]))
1780 if ((av[0] & mv[0]) < (bv[0] & mv[0]))
1787 memcpy(&av, &a6->sin6_addr.s6_addr, 16);
1792 if ((av[3] & mv[3]) > (bv[3] & mv[3]))
1794 if ((av[3] & mv[3]) < (bv[3] & mv[3]))
1796 if ((av[2] & mv[2]) > (bv[2] & mv[2]))
1798 if ((av[2] & mv[2]) < (bv[2] & mv[2]))
1800 if ((av[
[all...]
/openbsd-current/gnu/usr.bin/perl/
H A Dperlio.c683 AV * const av = newAV(); local
698 av_push_simple(av, name);
699 av_push_simple(av, arg);
700 av_push_simple(av, newSViv((IV)l->flags));
705 return av;
811 AV * const av = newAV(); local
815 sv_magic(sv, MUTABLE_SV(av), PERL_MAGIC_ext, NULL, 0);
826 av_push_simple(av, SvREFCNT_inc_simple_NN(layer));
833 SvREFCNT_dec(av);
889 PerlIO_parse_layers(pTHX_ PerlIO_list_t *av, cons argument
979 PerlIO_default_buffer(pTHX_ PerlIO_list_t *av) argument
993 PerlIO_arg_fetch(PerlIO_list_t *av, IV n) argument
999 PerlIO_layer_fetch(pTHX_ PerlIO_list_t *av, IV n, PerlIO_funcs *def) argument
1100 PerlIO_list_t * const av = PerlIO_default_layers(aTHX); local
1457 PerlIO_list_t *av; local
[all...]
H A Dperliol.h118 PERL_CALLCONV SV *PerlIO_arg_fetch(PerlIO_list_t *av, IV n);
145 PERL_CALLCONV int PerlIO_parse_layers(pTHX_ PerlIO_list_t *av, const char *names);
146 PERL_CALLCONV PerlIO_funcs *PerlIO_layer_fetch(pTHX_ PerlIO_list_t *av, IV n, PerlIO_funcs *def);
152 PERL_CALLCONV void PerlIO_default_buffer(pTHX_ PerlIO_list_t *av);
H A Dscope.h19 #define save_aelem(av,idx,sptr) save_aelem_flags(av,idx,sptr,SAVEf_SETMAGIC)
H A Dclass.c73 AV *av; local
78 av = newAV_alloc_x(count);
80 av_extend(av, count);
82 av_push_simple(av, newSVsv(*svp));
87 av = newAV();
88 val = (SV *)av;
H A DMakefile.micro31 H = av.h uconfig.h cop.h cv.h embed.h embedvar.h form.h gv.h handy.h \
67 uav$(_O): $(HE) av.c
68 $(CC) $(CCFLAGS) -o $@ $(CFLAGS) av.c
H A Dmro_core.c238 AV* av; local
277 av = (gvp && (gv = *gvp) && isGV_with_GP(gv)) ? GvAV(gv) : NULL;
285 if(av && AvFILLp(av) >= 0) {
287 SV **svp = AvARRAY(av);
288 I32 items = AvFILLp(av) + 1;
H A Dsv.c25 * here; higher-level functions are in av.c, hv.c, and so on. Opcode
134 sv, av, hv...) contains type and reference count information, and for
6139 AV *av = NULL; local
6164 av = newAV();
6165 AvREAL_off(av);
6166 SvREFCNT_inc_simple_void_NN(av);
6167 /* av now has a refcnt of 2; see discussion above */
6168 av_extend(av, *svp ? 2 : 1);
6171 AvARRAY(av)[++AvFILLp(av)]
6253 AV * const av = (AV*)*svp; local
6313 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av) argument
6777 AV* av = MUTABLE_AV(sv); local
6979 AV *const av = (AV*)iter_sv; local
10643 Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible) argument
15165 const AV *av; local
16655 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val) argument
16892 AV *av = MUTABLE_AV(PAD_SV(obase->op_targ)); local
16905 AV *av = MUTABLE_AV(PAD_SV(obase->op_targ)); local
16922 AV *const av = GvAV(gv); local
[all...]
H A Dgv.c1758 AV* av; local
1762 av = GvAVn(gv);
1764 sv_magic(MUTABLE_SV(av), MUTABLE_SV(gv), PERL_MAGIC_isa,
1772 SvREADONLY_on((SV *)av);
2201 AV* const av = GvAVn(gv); local
2204 sv_magic(MUTABLE_SV(av), (SV*)n, PERL_MAGIC_regdata, NULL, 0);
2205 SvREADONLY_on(av);
2379 AV* const av = GvAVn(gv); local
2382 sv_magic(MUTABLE_SV(av), (SV*)n, PERL_MAGIC_regdata, NULL, 0);
2383 SvREADONLY_on(av);
2916 AV * av = gp->gp_av; local
[all...]
H A Dcflags.SH505 av) ccflags=`echo $ccflags | sed -e s/-pipe//` ;;
/openbsd-current/games/hunt/hunt/
H A Dhunt.c85 main(int ac, char **av) argument
93 while ((c = getopt(ac, av, "Sbcfh:l:mn:op:qst:w:")) != -1) {
151 Sock_host = av[ac - 1];
/openbsd-current/games/fortune/strfile/
H A Dstrfile.c127 main(int ac, char *av[]) argument
142 getargs(ac, av); /* evalute arguments */
/openbsd-current/usr.bin/ssh/
H A Dsshd.c474 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
1131 prepare_proctitle(int ac, char **av) argument
1137 xextendf(&ret, " ", "%s", av[i]);
1154 main(int ac, char **av) argument
1178 saved_argv = av;
1188 while ((opt = getopt(ac, av,
1301 if (!test_flag && !do_dump_cfg && !path_absolute(av[0]))
1395 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1590 listener_proctitle = prepare_proctitle(ac, av);
H A Dmisc.c2090 argv_free(char **av, int ac) argument
2094 if (av == NULL)
2097 free(av[i]);
2098 free(av);
2623 * av[0].
2627 int ac, char **av, FILE **child, u_int flags,
2668 if (!path_absolute(av[0])) {
2674 if (stat(av[0], &st) == -1) {
2676 av[0], strerror(errno));
2680 safe_path(av[
2626 subprocess(const char *tag, const char *command, int ac, char **av, FILE **child, u_int flags, struct passwd *pw, privdrop_fn *drop_privs, privrestore_fn *restore_privs) argument
[all...]
/openbsd-current/usr.bin/rcs/
H A Ddiff3.c155 merge_diff3(char **av, int flags) argument
170 if ((b1 = buf_load(av[0])) == NULL)
172 if ((b2 = buf_load(av[1])) == NULL)
174 if ((b3 = buf_load(av[2])) == NULL)
219 diff3_conflicts = diff3_internal(argc, argv, av[0], av[2]);
/openbsd-current/usr.bin/tmux/
H A Dcmd-queue.c361 struct args_value *av; local
418 av = args_first_value(args, flag);
419 while (av != NULL) {
421 cmdq_add_format(new_state, tmp, "%s", av->string);
423 av = args_next_value(av);
/openbsd-current/gnu/usr.bin/perl/ext/B/
H A DB.xs1999 AvFILL(av)
2000 B::AV av
2003 AvARRAY(av)
2004 B::AV av
2006 if (AvFILL(av) >= 0) {
2007 SV **svp = AvARRAY(av);
2009 for (i = 0; i <= AvFILL(av); i++)
2014 AvARRAYelt(av, idx)
2015 B::AV av
2018 if (idx >= 0 && AvFILL(av) >
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Scalar-List-Utils/
H A DListUtil.xs832 AV *av = newAV();
833 av_push(av, newSVsv(a));
834 av_push(av, newSVsv(b));
836 ST(reti) = sv_2mortal(newRV_noinc((SV *)av));
1605 AV *av;
1609 av = lists[i] = (AV *)SvRV(arg);
1612 len = av_count(av);
1619 if(av_count(av) > len)
1620 len = av_count(av);
1624 if(av_count(av) < le
[all...]
/openbsd-current/bin/ksh/
H A Dsyn.c305 te.pos.av = &args;
863 XPput(*te->pos.av, save);
878 XPput(*te->pos.av, yylval.cp);
899 yylval.cp = *(XPptrv(*te->pos.av) + XPsize(*te->pos.av) +
/openbsd-current/usr.bin/login/
H A Dlogin.c274 char *av[5], **ap; local
280 ap = av;
288 execv(_PATH_SU, av);
/openbsd-current/usr.bin/deroff/
H A Dderoff.c258 main(int ac, char **av) argument
279 while ((ch = getopt(ac, av, "ikpwm:")) != -1) {
325 argv = av + optind;
/openbsd-current/usr.bin/newsyslog/
H A Dnewsyslog.c182 char **av; local
204 for (av = argv; *av; av++) {
206 if (strcmp(*av, q->log) == 0) {
213 warnx("%s: %s not found", conf, *av);
/openbsd-current/usr.bin/vi/vi/
H A Dv_txt.c2122 ARGS **av; local
2135 for (ac = argc - 1, av = argv + 1; ac > 0; --ac, ++av)
2136 if (av[0]->len < prefix ||
2137 memcmp(av[0]->bp, argv[0]->bp, prefix)) {
2150 for (ac = argc, av = argv, colwidth = 0; ac > 0; --ac, ++av) {
2151 for (col = 0, p = av[0]->bp + prefix; *p != '\0'; ++p)
2174 for (ac = argc, av = argv; ac > 0; --ac, ++av) {
[all...]
/openbsd-current/usr.bin/mklocale/
H A Dyacc.y249 main(int ac, char *av[])
261 while ((x = getopt(ac, av, "do:")) != -1) {
284 if (freopen(av[optind], "r", stdin) == 0)
285 err(1, "unable to open input file %s", av[optind]);
/openbsd-current/sys/dev/pci/drm/radeon/
H A Dni_dpm.h79 u32 av; member in struct:ni_leakage_coeffients

Completed in 516 milliseconds

12345678