Searched defs:unicode (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/arcfour/
H A Darcfour_str2key.c12 static void asctouni(unsigned char *unicode, unsigned char *ascii, size_t len) argument
16 unicode[2*counter]=ascii[counter];
17 unicode[2*counter + 1]=0x00;
40 Since the password must be stored in unicode, we need to increase
53 /* make the string. start by creating the unicode version of the password*/
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_subr.c73 int unicode = (SMB_UNICODE_STRINGS(vcp)) ? 1 : 0; local
79 if (unicode) {
112 if (unicode)
126 if (unicode)
/illumos-gate/usr/src/cmd/mandoc/
H A Dchars.c37 int unicode; member in struct:ln
446 return ln != NULL ? ln->unicode : sz == 1 ? (unsigned char)*p : -1;
491 if (uc == lines[i].unicode)
/illumos-gate/usr/src/common/smbsrv/
H A Dsmb_string.c335 * First build a codepage based on cp_unicode.h. Then build the unicode
342 smb_codepage_t *unicode; local
346 unicode = MEM_ZALLOC("unicode", sizeof (smb_codepage_t) << 16);
347 if (unicode == NULL)
356 unicode[b].ctype = CODEPAGE_ISNONE;
357 unicode[b].upper = (smb_wchar_t)b;
358 unicode[b].lower = (smb_wchar_t)b;
371 unicode[b].ctype = CODEPAGE_ISNONE;
372 unicode[
[all...]
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dntlmssp.c173 * the data is a string (OEM or unicode).
179 const char *str, int unicode)
195 err = mb_put_string(&tmp_mb, str, unicode);
199 trim = (unicode) ? 2 : 1;
178 mb_put_sb_string(struct mbdata *mbp, struct sec_buf *sb, const char *str, int unicode) argument
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c133 * that the string is an unicode string, convert it.
137 * U Same as 'u'. The string to retrieve is unicode.
147 * , Same as '.' but take in account it is an unicode string.
163 int unicode = 0; local
188 unicode = 1;
191 unicode = sr->smb_flg2 & SMB_FLAGS2_UNICODE;
308 case 'u': /* Convert from unicode if flags are set */
309 if (unicode)
324 case 'U': /* Convert from unicode */
368 if (unicode)
530 int unicode = 0; local
[all...]
/illumos-gate/usr/src/cmd/fs.d/udfs/fstyp/
H A Dud_lib.c1200 * unicode is the string of 16-bot characters
1204 UdfTxName(uint16_t *unicode, int32_t count) argument
1209 if ((unicode[0] == DOT) &&
1210 ((count == 1) || ((count == 2) && (unicode[1] == DOT)))) {
1215 unicode[0] = UNDERBAR;
1216 unicode[1] = POUND;
1217 unicode[2] = htoc[(uint16_t)(crc & 0xf000) >> 12];
1218 unicode[3] = htoc[(uint16_t)(crc & 0xf00) >> 8];
1219 unicode[4] = htoc[(uint16_t)(crc & 0xf0) >> 4];
1220 unicode[
1299 UncompressUnicode( int32_t numberOfBytes, uint8_t *UDFCompressed, uint16_t *unicode) argument
1351 ud_compressunicode( int32_t numberOfChars, int32_t compID, uint16_t *unicode, uint8_t *UDFCompressed) argument
[all...]

Completed in 84 milliseconds