| /external/flatbuffers/go/ |
| D | encode.go | 22 func GetByte(buf []byte) byte { 27 func GetBool(buf []byte) bool { 32 func GetUint8(buf []byte) (n uint8) { 38 func GetUint16(buf []byte) (n uint16) { 45 func GetUint32(buf []byte) (n uint32) { 54 func GetUint64(buf []byte) (n uint64) { 67 func GetInt8(buf []byte) (n int8) { 73 func GetInt16(buf []byte) (n int16) { 80 func GetInt32(buf []byte) (n int32) { 89 func GetInt64(buf []byte) (n int64) { [all …]
|
| D | lib.go | 6 Init(buf []byte, i UOffsetT) 10 func GetRootAs(buf []byte, offset UOffsetT, fb FlatBuffer) {
|
| /external/boringssl/src/ssl/test/runner/poly1305/ |
| D | sum_arm.go | 13 func poly1305_auth_armv6(out *[16]byte, m *byte, mlen uint32, key *[32]byte) 18 func Sum(out *[16]byte, m []byte, key *[32]byte) {
|
| D | sum_amd64.go | 13 func poly1305(out *[16]byte, m *byte, mlen uint64, key *[32]byte) 18 func Sum(out *[16]byte, m []byte, key *[32]byte) {
|
| D | poly1305.go | 28 func Verify(mac *[16]byte, m []byte, key *[32]byte) bool {
|
| D | sum_ref.go | 37 func Sum(out *[16]byte, m []byte, key *[32]byte) {
|
| /external/boringssl/src/ssl/test/runner/ |
| D | shim_ticket.go | 30 func DecryptShimTicket(in []byte) ([]byte, error) { 87 func EncryptShimTicket(in []byte) []byte { 121 func parseDERElement(in []byte) (tag byte, body, rest []byte, ok bool) { 180 func SetShimTicketVersion(in []byte, vers uint16) ([]byte, error) { 216 func SetShimTicketCipherSuite(in []byte, id uint16) ([]byte, error) {
|
| D | prf.go | 17 func splitPreMasterSecret(secret []byte) (s1, s2 []byte) { 24 func pHash(result, secret, seed []byte, hash func() hash.Hash) { 49 func prf10(result, secret, label, seed []byte) { 80 func prf30(result, secret, label, seed []byte) { 140 …et(version uint16, suite *cipherSuite, preMasterSecret, clientRandom, serverRandom []byte) []byte { 152 func extendedMasterFromPreMasterSecret(version uint16, suite *cipherSuite, preMasterSecret []byte, … 161 …et(version uint16, suite *cipherSuite, masterSecret, clientRandom, serverRandom []byte, macLen, ke… 265 func finishedSum30(md5, sha1 hash.Hash, masterSecret []byte, magic []byte) []byte { 379 func hkdfExpandLabel(hash crypto.Hash, secret, label, hashValue []byte, length int) []byte { 460 func deriveTrafficAEAD(version uint16, suite *cipherSuite, secret []byte, side trafficDirection) in… [all …]
|
| D | dtls.go | 161 func (c *Conn) makeFragment(header, data []byte, fragOffset, fragLen int) []byte { 171 func (c *Conn) dtlsWriteRecord(typ recordType, data []byte) (n int, err error) { 340 func (c *Conn) dtlsSealRecord(typ recordType, data []byte) (b *block, err error) { 399 func (c *Conn) dtlsWriteRawRecord(typ recordType, data []byte) (n int, err error) {
|
| D | chacha20_poly1305.go | 46 func chaCha20Block(state *[16]uint32, out []byte) { 68 func sliceForAppend(in []byte, n int) (head, tail []byte) { 79 func chaCha20(out, in, key, nonce []byte, counter uint64) { 124 func newChaCha20Poly1305(key []byte) (cipher.AEAD, error) {
|
| D | hkdf.go | 23 func hkdfExtract(hash func() hash.Hash, salt, ikm []byte) []byte { 33 func hkdfExpand(hash func() hash.Hash, prk, info []byte, length int) []byte {
|
| D | cipher_suites.go | 176 func cipherNull(key, iv []byte, isRead bool) interface{} { 180 func cipherRC4(key, iv []byte, isRead bool) interface{} { 185 func cipher3DES(key, iv []byte, isRead bool) interface{} { 193 func cipherAES(key, iv []byte, isRead bool) interface{} { 202 func macSHA1(version uint16, key []byte) macFunction { 214 func macMD5(version uint16, key []byte) macFunction { 226 func macSHA256(version uint16, key []byte) macFunction { 238 func macSHA384(version uint16, key []byte) macFunction { 252 MAC(digestBuf, seq, header, length, data []byte) []byte 278 func aeadAESGCM(version uint16, key, fixedNonce []byte) *tlsAead { [all …]
|
| D | sign.go | 24 signMessage(key crypto.PrivateKey, config *Config, msg []byte) ([]byte, error) 25 verifyMessage(key crypto.PublicKey, msg, sig []byte) error 53 …t16, key crypto.PrivateKey, config *Config, sigAlg signatureAlgorithm, msg []byte) ([]byte, error)… 69 …n uint16, key crypto.PublicKey, config *Config, sigAlg signatureAlgorithm, msg, sig []byte) error {
|
| /external/clang/test/Sema/ |
| D | inline-asm-validate-aarch64.c | 6 uint8_t byte; in constraint_r() local 17 uint8_t byte; in constraint_r_symbolic() local 30 uint8_t byte; in constraint_r_symbolic_macro() local
|
| /external/boringssl/src/ssl/test/runner/curve25519/ |
| D | curve25519.go | 68 func load3(in []byte) int64 { 77 func load4(in []byte) int64 { 86 func feFromBytes(dst *fieldElement, src *[32]byte) { 166 func feToBytes(s *[32]byte, h *fieldElement) { 792 func scalarMult(out, in, base *[32]byte) {
|
| D | mont25519_amd64.go | 34 func mladder(xr, zr *[5]uint64, s *[32]byte) { 62 func scalarMult(out, in, base *[32]byte) { 87 func unpack(r *[5]uint64, x *[32]byte) { 132 func pack(out *[32]byte, x *[5]uint64) {
|
| D | doc.go | 14 func ScalarMult(dst, in, base *[32]byte) { 21 func ScalarBaseMult(dst, in *[32]byte) {
|
| /external/libese/libese/tests/ |
| D | bitspec_unittests.cpp | 75 uint8_t byte = 0; in TEST_F() local 90 uint8_t byte = bs_set(0, kTestSpec.single.bit[bit], 1); in TEST_F() local 100 uint8_t byte = bs_set(0xff, kTestSpec.single.bit[bit], 0); in TEST_F() local 109 uint8_t byte = 0xff; in TEST_F() local 118 uint8_t byte = 0; in TEST_F() local 143 uint8_t byte = 0; in TEST_F() local
|
| /external/ImageMagick/coders/ |
| D | wbmp.c | 104 byte; in WBMPReadInteger() local 125 byte; in ReadWBMPImage() local 366 byte; in WriteWBMPImage() local
|
| D | mono.c | 116 byte; in ReadMONOImage() local 299 byte; in WriteMONOImage() local
|
| D | rgf.c | 124 byte, in ReadRGFImage() local 324 byte; in WriteRGFImage() local
|
| /external/v8/src/ |
| D | disasm.h | 12 typedef unsigned char byte; typedef
|
| /external/elfutils/libcpu/ |
| D | i386_data.h | 397 uint_fast8_t byte = modrm & 7; in FCT_MOD$R_M() local 427 uint_fast8_t byte = modrm & 7; in FCT_Mod$R_m() local 782 int8_t byte = *(*d->param_start)++; in FCT_imms() local 858 int_fast8_t byte = *(*d->param_start)++; in FCT_imms8() local 882 uint_fast8_t byte = *(*d->param_start)++; in FCT_imm8() local 919 uint_fast8_t byte = d->data[d->opoff1 / 8]; in FCT_mmxreg() local 1115 uint_fast8_t byte = modrm & 7; in FCT_mod$16r_m() local 1140 uint_fast8_t byte = modrm & 7; in FCT_mod$64r_m() local 1163 uint_fast8_t byte = d->data[d->opoff1 / 8]; in FCT_reg() local 1217 uint_fast8_t byte = d->data[d->opoff1 / 8]; in FCT_reg64() local [all …]
|
| /external/liblzf/ |
| D | crc32.h | 62 #define crc32(crc,byte) (crc_32_tab[(u8)(crc) ^ (u8)(byte)] ^ ((crc) >> 8)) argument
|
| /external/vulkan-validation-layers/libs/glm/gtx/ |
| D | raw_data.hpp | 56 typedef detail::uint8 byte; typedef
|