Searched refs:conv (Results 26 - 50 of 105) sorted by relevance

12345

/freebsd-11-stable/bin/dd/
H A Dargs.c81 { "conv", f_conv, 0, 0 },
312 static const struct conv { struct
342 struct conv *cp, tmp;
346 cp = bsearch(&tmp, clist, sizeof(clist) / sizeof(struct conv),
347 sizeof(struct conv), c_conv);
362 return (strcmp(((const struct conv *)a)->name,
363 ((const struct conv *)b)->name));
/freebsd-11-stable/sys/fs/msdosfs/
H A Dmsdosfs_conv.c303 int conv = 1; local
389 if (conv != 3)
390 conv = 2;
393 conv = 3;
400 if (((dn[j] & 0x80) || *(cp - 1) != dn[j]) && conv != 3)
401 conv = 2;
403 conv = 3;
407 conv = 3;
412 conv = 3;
428 if (conv !
[all...]
/freebsd-11-stable/contrib/lua/src/
H A Dloslib.c260 static const char *checkoption (lua_State *L, const char *conv, argument
267 else if (memcmp(conv, option, oplen) == 0) { /* match? */
268 memcpy(buff, conv, oplen); /* copy valid option to buffer */
270 return conv + oplen; /* return next item */
274 lua_pushfstring(L, "invalid conversion specifier '%%%s'", conv));
275 return conv; /* to avoid warnings */
/freebsd-11-stable/release/powerpc/
H A Dmkisoimages.sh32 dd if="$4/boot/loader" of=/tmp/hfs-boot-block seek=$OFFSET conv=notrunc
H A Dgenerate-hfs.sh47 echo 'Loader START' | dd of=loader.tmp cbs=$LOADER_SIZE count=1 conv=block
/freebsd-11-stable/tests/sys/geom/class/mirror/
H A D8_test.sh32 dd if=/dev/random of=$m1 bs=$ddbs count=1 conv=notrunc >/dev/null 2>&1
/freebsd-11-stable/usr.sbin/nvram/
H A Dnvram.c57 } conv; variable in typeref:union:__anon14026
123 memcpy(conv.buf, cp, sizeof(struct chrp_header));
124 size = conv.header.length * 0x10;
125 if (strncmp(conv.header.name, "common", 7) == 0)
/freebsd-11-stable/stand/i386/pxeldr/
H A DMakefile34 ${DD} if=${.TARGET}.tmp of=${.TARGET} obs=2k conv=osync
/freebsd-11-stable/lib/libpam/modules/pam_radius/
H A Dpam_radius.c183 const struct pam_conv *conv; local
233 conv = (const struct pam_conv *)item;
234 if ((retval = conv->conv(num_msgs, msg_ptrs, &resp,
235 conv->appdata_ptr)) != PAM_SUCCESS)
/freebsd-11-stable/tools/regression/tmpfs/
H A Dt_sizes83 dd if=/dev/zero of=a bs=1024 conv=notrunc seek=1 count=1 \
/freebsd-11-stable/stand/efi/boot1/
H A Dgenerate-fat.sh53 echo 'Boot1 START' | dd of=stub/efi/boot/$FILENAME cbs=$BOOT1_SIZE count=1 conv=block
/freebsd-11-stable/release/amd64/
H A Dmkisoimages.sh96 dd if=hybrid.img of=$NAME bs=32k count=1 conv=notrunc
/freebsd-11-stable/contrib/openpam/t/
H A Dt_openpam_dispatch.c70 pamc.conv = &t_pam_conv;
138 pamc.conv = &t_pam_conv;
/freebsd-11-stable/contrib/netbsd-tests/sbin/fsck_ffs/
H A Dt_check_quotas.sh46 count=8 seek=${blkno} conv=notrunc
H A Dt_enable_quotas.sh62 count=1 seek=${blkno} conv=notrunc
/freebsd-11-stable/contrib/smbfs/lib/smb/
H A Drap.c305 u_int16_t *rp, conv; local
323 conv = le16toh(*rp++);
362 *p32 = (*p32 & 0xffff) - conv;
/freebsd-11-stable/contrib/pam_modules/pam_passwdqc/
H A Dpam_passwdqc.c136 lo_const struct pam_conv *conv; local
143 conv = item;
150 return conv->conv(1, (lo_const struct pam_message **)&pmsg, resp,
151 conv->appdata_ptr);
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_subst.c1313 enum { C_NOTSET, C_LOWER, C_ONELOWER, C_ONEUPPER, C_UPPER } conv; local
1350 } else if (conv != C_NOTSET) { \
1351 switch (conv) { \
1353 conv = C_NOTSET; \
1360 conv = C_NOTSET; \
1374 conv = C_NOTSET;
1408 conv = C_NOTSET;
1412 conv = C_ONELOWER;
1416 conv = C_LOWER;
1420 conv
[all...]
/freebsd-11-stable/lib/libedit/
H A Dsearch.c118 static ct_buffer_t conv; local
135 if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) {
136 rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL,
144 if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
145 rv = regexec(re, ct_encode_string(str, &conv));
152 if (re_comp(ct_encode_string(pat, &conv)) != NULL)
155 return re_exec(ct_encode_string(str, &conv)) == 1;
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/types/
H A DMakefile49 tst.conv.d \
/freebsd-11-stable/contrib/nvi/common/
H A Dscreen.h96 CONV conv; /* Conversion functions. */ member in struct:_scr
/freebsd-11-stable/contrib/openpam/bin/su/
H A Dsu.c99 pamc.conv = &openpam_ttyconv;
/freebsd-11-stable/tools/tools/net80211/wlaninject/
H A Dwlaninject.c394 int conv = 0; local
422 if (conv == 0) {
429 conv++;
431 conv++;
436 return conv;
/freebsd-11-stable/crypto/openssl/crypto/rc4/asm/
H A Drc4-md5-x86_64.pl615 my ($reg,$conv)=@_;
616 if ($reg =~ /%r[0-9]+/) { $reg .= $conv; }
617 elsif ($conv eq "b") { $reg =~ s/%[er]([^x]+)x?/%$1l/; }
618 elsif ($conv eq "w") { $reg =~ s/%[er](.+)/%$1/; }
619 elsif ($conv eq "d") { $reg =~ s/%[er](.+)/%e$1/; }
H A Drc4-x86_64.pl664 my ($reg,$conv)=@_;
665 if ($reg =~ /%r[0-9]+/) { $reg .= $conv; }
666 elsif ($conv eq "b") { $reg =~ s/%[er]([^x]+)x?/%$1l/; }
667 elsif ($conv eq "w") { $reg =~ s/%[er](.+)/%$1/; }
668 elsif ($conv eq "d") { $reg =~ s/%[er](.+)/%e$1/; }

Completed in 310 milliseconds

12345