/third_party/skia/docs/examples/ |
H A D | Canvas_drawTextRSXform.cpp | 9 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 D | base64.py | 55 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 D | brotlidump.py | 5 - 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 D | test_long_acl.py | 14 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-() ~' variable 15 t_alphabet=len(alphabet)
|
H A D | setacl_stress.py | 14 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-()' variable 15 t_alphabet=len(alphabet)
|
H A D | random_gen.py | 6 alphabet = 'azertyuiopqsdfghjklmwxcvbnAZERTYUIOPQSDFGHJKLMWXCVBN123456789-_' variable 7 a_length = len(alphabet) 157 outputString =outputString + alphabet[a] 165 outputString = outputString + alphabet[a]
|
H A D | test_acl.py | 13 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-() ~' variable 14 t_alphabet=len(alphabet)
|
/third_party/node/deps/uv/src/ |
H A D | idna.c | 107 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 D | idna.c | 154 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 D | disassemble.c | 721 /* 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 D | writer.js | 239 * @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 D | vp3.c | 800 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 D | zic.c | 1301 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 D | wuffs-v0.3.c | 5621 // 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 D | wuffs-v0.3.c | 5406 // 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 D | texinfo.tex | 3737 % 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}
|