Home
last modified time | relevance | path

Searched refs:alphabet (Results 1 - 16 of 16) sorted by relevance

/third_party/skia/docs/examples/
H A DCanvas_drawTextRSXform.cpp9 char alphabet[iterations]; in REG_FIDDLE() local
18 alphabet[i] = 'A' + i; in REG_FIDDLE()
22 auto spiral = SkTextBlob::MakeFromRSXform(alphabet, sizeof(alphabet), transforms, font); in REG_FIDDLE()
/third_party/python/Lib/
H A Dbase64.py55 alternative alphabet for the '+' and '/' characters. This allows an
69 which specifies the alternative alphabet used instead of the '+' and '/'
76 normal base-64 alphabet nor the alternative alphabet are discarded prior
77 to the padding check. If validate is True, these non-alphabet characters
92 """Encode bytes-like object s using the standard Base64 alphabet.
99 """Decode bytes encoded with the standard Base64 alphabet.
103 is incorrectly padded. Characters that are not in the standard alphabet
113 """Encode bytes using the URL- and filesystem-safe Base64 alphabet.
116 bytes object. The alphabet use
[all...]
/third_party/skia/third_party/externals/brotli/research/
H A Dbrotlidump.py5 - The distance alphabet has size 16+(48<<POSTFIX),
109 Index is the place in the alphabet of the symbol.
334 """An alphabet of symbols, that can be read from a stream.
657 """The alphabet used for window size in the stream header.
950 """The alphabet to enumerate entries (called trees) in the context map.
1106 Dynamically generated alphabet.
1424 def readPrefixCode(self, alphabet):
1425 """give alphabet the prefix code that is read from the stream
1427 The alphabet in question must have a "logical" order,
1430 mode, numberOfSymbols = self.verboseRead(PrefixCodeHeader(alphabet
[all...]
/third_party/ltp/testcases/network/nfsv4/acl/
H A Dtest_long_acl.py14 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-() ~' variable
15 t_alphabet=len(alphabet)
H A Dsetacl_stress.py14 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-()' variable
15 t_alphabet=len(alphabet)
H A Drandom_gen.py6 alphabet = 'azertyuiopqsdfghjklmwxcvbnAZERTYUIOPQSDFGHJKLMWXCVBN123456789-_' variable
7 a_length = len(alphabet)
157 outputString =outputString + alphabet[a]
165 outputString = outputString + alphabet[a]
H A Dtest_acl.py13 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-() ~' variable
14 t_alphabet=len(alphabet)
/third_party/node/deps/uv/src/
H A Didna.c107 static const char alphabet[] = "abcdefghijklmnopqrstuvwxyz0123456789"; in uv__idna_toascii_label() local
236 *(*d)++ = alphabet[t]; in uv__idna_toascii_label()
240 *(*d)++ = alphabet[q]; in uv__idna_toascii_label()
/third_party/libuv/src/
H A Didna.c154 static const char alphabet[] = "abcdefghijklmnopqrstuvwxyz0123456789"; in uv__idna_toascii_label() local
283 *(*d)++ = alphabet[t]; in uv__idna_toascii_label()
287 *(*d)++ = alphabet[q]; in uv__idna_toascii_label()
/third_party/mesa3d/src/panfrost/midgard/
H A Ddisassemble.c721 /* To apply an upper destination shrink_mode, we "shift" the alphabet. in print_alu_mask()
725 const char *alphabet = components; in print_alu_mask() local
729 alphabet += (128 / bits); in print_alu_mask()
743 char c = alphabet[comp_idx / skip]; in print_alu_mask()
747 fprintf(fp, "%c", alphabet[comp_idx+1]); in print_alu_mask()
/third_party/protobuf/js/binary/
H A Dwriter.js239 * @param {!goog.crypt.base64.Alphabet=} alphabet Which flavor of base64 to use.
242 jspb.BinaryWriter.prototype.getResultBase64String = function(alphabet) {
243 return goog.crypt.base64.encodeByteArray(this.getResultBuffer(), alphabet);
/third_party/ffmpeg/libavcodec/
H A Dvp3.c800 const int *alphabet; in unpack_modes() local
816 alphabet = custom_mode_alphabet; in unpack_modes()
818 alphabet = ModeAlphabet[scheme - 1]; in unpack_modes()
854 coding_mode = alphabet[get_vlc2(gb, s->mode_code_vlc.table, 3, 3)]; in unpack_modes()
/third_party/tzdata/
H A Dzic.c1301 static char const alphabet[] = in random_dirent() local
1305 enum { prefixlen = sizeof prefix - 1, alphabetlen = sizeof alphabet - 1 }; in random_dirent()
1336 dst[dirlen + prefixlen + i] = alphabet[r % alphabetlen]; in random_dirent()
/third_party/astc-encoder/Source/
H A Dwuffs-v0.3.c5621 // and file-name-friendly alphabet be used, as per RFC 4648 section 5. When
5622 // this option bit is off, the standard alphabet from section 4 is used.
15733 const uint8_t* alphabet = (options & WUFFS_BASE__BASE_64__URL_ALPHABET) in wuffs_base__base_64__decode() local
15745 uint32_t s0 = alphabet[0xFF & (s >> 0)]; in wuffs_base__base_64__decode()
15746 uint32_t s1 = alphabet[0xFF & (s >> 8)]; in wuffs_base__base_64__decode()
15747 uint32_t s2 = alphabet[0xFF & (s >> 16)]; in wuffs_base__base_64__decode()
15748 uint32_t s3 = alphabet[0xFF & (s >> 24)]; in wuffs_base__base_64__decode()
15801 uint32_t s0 = alphabet[0xFF & (s >> 0)]; in wuffs_base__base_64__decode()
15802 uint32_t s1 = alphabet[0xFF & (s >> 8)]; in wuffs_base__base_64__decode()
15803 uint32_t s2 = alphabet[ in wuffs_base__base_64__decode()
15851 const uint8_t* alphabet = (options & WUFFS_BASE__BASE_64__URL_ALPHABET) wuffs_base__base_64__encode() local
[all...]
/third_party/skia/third_party/externals/wuffs/release/c/
H A Dwuffs-v0.3.c5406 // and file-name-friendly alphabet be used, as per RFC 4648 section 5. When
5407 // this option bit is off, the standard alphabet from section 4 is used.
14832 const uint8_t* alphabet = (options & WUFFS_BASE__BASE_64__URL_ALPHABET) in wuffs_base__base_64__decode() local
14844 uint32_t s0 = alphabet[0xFF & (s >> 0)]; in wuffs_base__base_64__decode()
14845 uint32_t s1 = alphabet[0xFF & (s >> 8)]; in wuffs_base__base_64__decode()
14846 uint32_t s2 = alphabet[0xFF & (s >> 16)]; in wuffs_base__base_64__decode()
14847 uint32_t s3 = alphabet[0xFF & (s >> 24)]; in wuffs_base__base_64__decode()
14900 uint32_t s0 = alphabet[0xFF & (s >> 0)]; in wuffs_base__base_64__decode()
14901 uint32_t s1 = alphabet[0xFF & (s >> 8)]; in wuffs_base__base_64__decode()
14902 uint32_t s2 = alphabet[ in wuffs_base__base_64__decode()
14950 const uint8_t* alphabet = (options & WUFFS_BASE__BASE_64__URL_ALPHABET) wuffs_base__base_64__encode() local
[all...]
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex3737 % Be sure we're not beyond the end of the alphabet.
3740 alphabet}%
3750 % Be sure we're not beyond the end of the alphabet.
3753 alphabet}

Completed in 115 milliseconds