Searched refs:mods (Results 1 - 25 of 99) sorted by relevance

1234

/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/s12z/
H A Dmod.s0 mods.b d0, d1, #98
2 mods.b d1, d2, d3
3 mods.w d2, d3, d4
4 mods.l d3, d7, #9842
H A Dmod.d12 0: 1b 3c ec 62 mods.b d0, d1, #98
13 4: 1b 3d c0 b9 mods.b d1, d2, d3
14 8: 1b 38 c9 ba mods.w d2, d3, d4
15 c: 1b 39 ff 00 mods.l d3, d7, #9842
H A Dp2-mul.s5 mods d5, d6, d7
/netbsd-current/external/bsd/openldap/dist/libraries/libldap/
H A Dfree.c86 ldap_mods_free( LDAPMod **mods, int freemods ) argument
90 if ( mods == NULL )
93 for ( i = 0; mods[i] != NULL; i++ ) {
94 if ( mods[i]->mod_op & LDAP_MOD_BVALUES ) {
95 if( mods[i]->mod_bvalues != NULL )
96 ber_bvecfree( mods[i]->mod_bvalues );
98 } else if( mods[i]->mod_values != NULL ) {
99 LDAP_VFREE( mods[i]->mod_values );
102 if ( mods[i]->mod_type != NULL ) {
103 LDAP_FREE( mods[
[all...]
H A Dmodify.c63 LDAPMod **mods,
84 /* allow mods to be NULL ("touch") */
85 if ( mods ) {
87 for ( i = 0; mods[i] != NULL; i++ ) {
88 if (( mods[i]->mod_op & LDAP_MOD_BVALUES) != 0 ) {
90 (ber_int_t) ( mods[i]->mod_op & ~LDAP_MOD_BVALUES ),
91 mods[i]->mod_type, mods[i]->mod_bvalues );
94 (ber_int_t) mods[i]->mod_op,
95 mods[
60 ldap_build_modify_req( LDAP *ld, LDAP_CONST char *dn, LDAPMod **mods, LDAPControl **sctrls, LDAPControl **cctrls, ber_int_t *msgidp ) argument
152 ldap_modify_ext( LDAP *ld, LDAP_CONST char *dn, LDAPMod **mods, LDAPControl **sctrls, LDAPControl **cctrls, int *msgidp ) argument
215 ldap_modify_ext_s( LDAP *ld, LDAP_CONST char *dn, LDAPMod **mods, LDAPControl **sctrl, LDAPControl **cctrl ) argument
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-perl/
H A Dmodify.c44 Modification *mods = &modlist->sml_mod; local
46 switch ( mods->sm_op & ~LDAP_MOD_BVALUES ) {
61 XPUSHs(sv_2mortal(newSVpv( mods->sm_desc->ad_cname.bv_val,
62 mods->sm_desc->ad_cname.bv_len )));
65 mods->sm_values != NULL && mods->sm_values[i].bv_val != NULL;
68 XPUSHs(sv_2mortal(newSVpv( mods->sm_values[i].bv_val, mods->sm_values[i].bv_len )));
/netbsd-current/external/bsd/openldap/dist/servers/slapd/
H A Dslapmodify.c310 Modification mods = { 0 }; local
316 local_rc = slap_str2ad( mod->mod_type, &mods.sm_desc, &text );
325 local_rc = slap_str2undef_ad( mod->mod_type, &mods.sm_desc, &text, 0 );
334 mods.sm_type = mods.sm_desc->ad_cname;
336 if ( mods.sm_desc->ad_type->sat_syntax->ssyn_pretty ) {
340 assert( mods.sm_desc->ad_type->sat_syntax->ssyn_validate != NULL );
343 if ( mods.sm_desc->ad_type->sat_equality &&
344 mods.sm_desc->ad_type->sat_equality->smr_normalize )
360 mods
[all...]
H A Dadd.c397 Modifications *mods,
416 for( ; mods != NULL; mods = mods->sml_next ) {
419 assert( mods->sml_desc != NULL );
421 attr = attr_find( (*e)->e_attrs, mods->sml_desc );
440 j = mods->sml_numvals;
450 for ( j = 0; mods->sml_values[j].bv_val; j++ ) {
451 ber_dupbv( &attr->a_vals[i+j], &mods->sml_values[j] );
456 AC_MEMCPY( &attr->a_vals[i], mods
396 slap_mods2entry( Modifications *mods, Entry **e, int initial, int dup, const char **text, char *textbuf, size_t textlen ) argument
526 slap_entry2mods( Entry *e, Modifications **mods, const char **text, char *textbuf, size_t textlen ) argument
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-meta/
H A Dmodify.c47 LDAPMod *mods = NULL; local
82 mods = ch_malloc( sizeof( LDAPMod )*i );
83 if ( mods == NULL ) {
120 modv[ i ] = &mods[ i ];
121 mods[ i ].mod_op = ml->sml_op | LDAP_MOD_BVALUES;
122 mods[ i ].mod_type = mapped.bv_val;
133 mods[ i ].mod_bvalues =
146 mods[ i ].mod_bvalues[ j ] = &ml->sml_values[ j ];
149 mods[ i ].mod_bvalues[ j ] = &mapping->dst;
153 mods[
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-ldap/
H A Dmodify.c48 *mods = NULL; local
61 /* just count mods */ ;
69 mods = (LDAPMod *)&modv[ i + 1 ];
78 modv[ i ] = &mods[ i ];
79 mods[ i ].mod_op = ( ml->sml_op | LDAP_MOD_BVALUES );
80 mods[ i ].mod_type = ml->sml_desc->ad_cname.bv_val;
84 /* just count mods */ ;
85 mods[ i ].mod_bvalues =
89 mods[ i ].mod_bvalues[ j ] = &ml->sml_values[ j ];
91 mods[
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_prime.c25 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods);
26 static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods,
61 prime_t *mods = NULL; local
78 mods = OPENSSL_zalloc(sizeof(*mods) * NUMPRIMES);
79 if (mods == NULL)
92 if (!probable_prime(ret, bits, safe, mods))
95 if (!probable_prime_dh(ret, bits, safe, mods, add, rem, ctx))
138 OPENSSL_free(mods);
272 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods) argument
320 probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
/netbsd-current/external/mpl/dhcp/
H A Ddhcp2netbsd56 mv /tmp/dhcp1$$ $c && echo did source mods for $c
67 mv /tmp/dhcp1$$ $c && echo did source mods for $c
81 mv /tmp/dhcp1$$ $c && echo did source mods for $c
93 mv /tmp/dhcp2$$ $m && echo did manpage mods for $m
/netbsd-current/sys/arch/next68k/dev/
H A Dnextkbd.c71 uint32_t mods; member in struct:nextkbd_internal
356 printf("datain %08x mods %08x\n", datain, id->mods);
359 if (((datain ^ id->mods) & KD_LSHIFT) != 0) {
360 id->mods ^= KD_LSHIFT;
366 } else if (((datain ^ id->mods) & KD_RSHIFT) != 0) {
367 id->mods ^= KD_RSHIFT;
373 } else if (((datain ^ id->mods) & KD_LALT) != 0) {
374 id->mods ^= KD_LALT;
380 } else if (((datain ^ id->mods)
[all...]
/netbsd-current/external/cddl/dtracetoolkit/dist/Bin/
H A Dhotkernel60 my $mods = defined $main::opt_m and $main::opt_m ? 1 : 0;
99 $name =~ s/\`.*// if $mods;
108 printf "\n%-52s %8s %6s\n", $mods ? "MODULE" : "FUNCTION", "COUNT", "PCNT";
/netbsd-current/external/cddl/dtracetoolkit/dist/
H A Dhotkernel60 my $mods = defined $main::opt_m and $main::opt_m ? 1 : 0;
99 $name =~ s/\`.*// if $mods;
108 printf "\n%-52s %8s %6s\n", $mods ? "MODULE" : "FUNCTION", "COUNT", "PCNT";
/netbsd-current/external/bsd/openldap/dist/tests/progs/
H A Dslapd-modify.c146 struct ldapmod *mods[2]; local
154 mods[0] = &mod;
155 mods[1] = NULL;
169 rc = ldap_modify_ext_s( ld, entry, mods, NULL, NULL );
196 rc = ldap_modify_ext_s( ld, entry, mods, NULL, NULL );
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_prime.c22 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods,
24 static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods,
130 prime_t *mods = NULL; local
147 mods = OPENSSL_zalloc(sizeof(*mods) * NUMPRIMES);
148 if (mods == NULL) {
160 if (!probable_prime(ret, bits, safe, mods, ctx))
163 if (!probable_prime_dh(ret, bits, safe, mods, add, rem, ctx))
206 OPENSSL_free(mods);
472 * |mods| i
478 probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods, BN_CTX *ctx) argument
536 probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
/netbsd-current/external/gpl2/lvm2/dist/
H A Dlvm2netbsd83 mv /tmp/file3$$ $c && echo did source mods for $c
99 $m > `dirname $m`/$base && echo did manpage mods for $base
/netbsd-current/external/bsd/nvi/dist/dist/ExtUtils/
H A DEmbed.pm39 my($file, $std, $mods) = @_;
40 my($fh,@mods,%seen);
44 @mods = @$mods if $mods;
50 @mods = @ARGV;
52 $std = 1 unless scalar @mods;
61 push(@mods, static_ext()) if defined $std;
62 @mods = grep(!$seen{$_}++, @mods);
[all...]
/netbsd-current/external/bsd/openldap/dist/contrib/slapd-modules/addpartial/
H A Daddpartial-overlay.c86 Modifications *mods = NULL; local
87 Modifications **modtail = &mods;
253 if(mods)
261 Debug(LDAP_DEBUG_TRACE, "%s: mods to do...\n",
265 nop.orm_modlist = mods;
270 for(m = mods, modcount = 0; m; m = m->sml_next,
273 /* count number of mods */
276 Debug(LDAP_DEBUG_TRACE, "%s: number of mods: %d\n",
302 Debug(LDAP_DEBUG_TRACE, "%s: freeing mods...\n",
305 for(toDel = mods; toDe
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
H A Dmodify.c53 LDAPMod *mods = NULL; local
76 mods = op->o_tmpalloc( sizeof( LDAPMod )*i, op->o_tmpmemctx );
79 if ( mods == NULL ) {
100 modv[ i ] = &mods[ i ];
101 mods[ i ].mod_op = ml->sml_op | LDAP_MOD_BVALUES;
102 mods[ i ].mod_type = ml->sml_desc->ad_cname.bv_val;
106 mods[ i ].mod_bvalues =(struct berval **)op->o_tmpalloc( ( j + 1 ) *sizeof( struct berval * ), op->o_tmpmemctx );
108 mods[ i ].mod_bvalues[ j ] = op->o_tmpalloc(sizeof( struct berval ), op->o_tmpmemctx );
110 asyncmeta_dn_massage( &dc, &ml->sml_values[ j ], mods[ i ].mod_bvalues[ j ] );
112 *mods[
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/overlays/
H A Dppolicy.c2357 Modifications *mods = NULL, *modtail = NULL, local
2866 mods = NULL;
2868 mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
2869 mods->sml_op = LDAP_MOD_REPLACE;
2870 mods->sml_numvals = 1;
2871 mods->sml_values = (BerVarray) ch_calloc( sizeof( struct berval ), 2 );
2872 mods->sml_nvalues = (BerVarray) ch_calloc( sizeof( struct berval ), 2 );
2874 ber_dupbv( &mods->sml_values[0], &timestamp );
2875 ber_dupbv( &mods->sml_nvalues[0], &timestamp );
2877 mods
[all...]
/netbsd-current/external/bsd/file/
H A Dfile2netbsd72 mv /tmp/file3$$ $c && echo did source mods for $c
91 mv /tmp/file4$$ $m && echo did manpage mods for $m
/netbsd-current/external/bsd/openldap/dist/contrib/slapd-modules/nops/
H A Dnops.c44 nops_rm_mod( Modifications **mods, Modifications *mod ) { argument
48 if (*mods == mod) {
49 *mods = next;
53 for (m = *mods; m; m = m->sml_next) {
/netbsd-current/external/bsd/unbound/dist/testcode/
H A Dunitzonemd.c253 struct module_stack mods; local
259 memset(&mods, 0, sizeof(mods));
290 modstack_init(&mods);
291 if(!modstack_setup(&mods, env.cfg->module_conf, &env))
293 env.mesh = mesh_create(&mods, &env);
305 auth_zone_verify_zonemd(z, &env, &mods, &result, 1, 0);
330 modstack_desetup(&mods, &env);

Completed in 249 milliseconds

1234