/external/boringssl/src/util/fipstools/acvp/acvptool/subprocess/ |
D | kasdh.go | 96 p, err := hex.DecodeString(group.PHex) 101 q, err := hex.DecodeString(group.QHex) 106 g, err := hex.DecodeString(group.GHex) 117 peerPublic, err := hex.DecodeString(test.PeerPublicHex) 127 privateKey, err := hex.DecodeString(test.PrivateKeyHex) 132 publicKey, err := hex.DecodeString(test.PublicKeyHex) 137 expectedOutput, err := hex.DecodeString(test.ResultHex)
|
D | ecdsa.go | 112 qx, err := hex.DecodeString(test.QxHex) 116 qy, err := hex.DecodeString(test.QyHex) 155 msg, err := hex.DecodeString(test.MsgHex) 180 msg, err := hex.DecodeString(test.MsgHex) 184 qx, err := hex.DecodeString(test.QxHex) 188 qy, err := hex.DecodeString(test.QyHex) 192 r, err := hex.DecodeString(test.RHex) 196 s, err := hex.DecodeString(test.SHex)
|
D | tlskdf.go | 108 pms, err := hex.DecodeString(test.PMSHex) 113 clientHelloRandom, err := hex.DecodeString(test.ClientHelloRandomHex) 118 serverHelloRandom, err := hex.DecodeString(test.ServerHelloRandomHex) 123 clientRandom, err := hex.DecodeString(test.ClientRandomHex) 128 serverRandom, err := hex.DecodeString(test.ServerRandomHex)
|
D | kas.go | 108 peerX, err := hex.DecodeString(test.XHex) 113 peerY, err := hex.DecodeString(test.YHex) 123 privateKey, err := hex.DecodeString(test.PrivateKeyHex) 128 expectedOutput, err := hex.DecodeString(test.ResultHex)
|
D | xts.go | 94 key, err := hex.DecodeString(test.KeyHex) 101 t, err := hex.DecodeString(*test.TweakHex) 120 msg, err = hex.DecodeString(test.CiphertextHex) 122 msg, err = hex.DecodeString(test.PlaintextHex)
|
D | aead.go | 109 key, err := hex.DecodeString(test.KeyHex) 114 nonce, err := hex.DecodeString(test.IVHex) 119 aad, err := hex.DecodeString(test.AADHex) 135 input, err := hex.DecodeString(inputHex) 150 if tag, err = hex.DecodeString(test.TagHex); err != nil {
|
D | rsa.go | 183 msg, err := hex.DecodeString(test.MessageHex) 227 n, err := hex.DecodeString(group.N) 231 e, err := hex.DecodeString(group.E) 243 msg, err := hex.DecodeString(test.MessageHex) 247 sig, err := hex.DecodeString(test.SignatureHex)
|
D | keyedMac.go | 114 key, err := hex.DecodeString(test.KeyHex) 119 msg, err := hex.DecodeString(test.MsgHex) 137 expectedMAC, err := hex.DecodeString(test.MACHex)
|
D | hmac.go | 101 msg, err := hex.DecodeString(test.MsgHex) 109 key, err := hex.DecodeString(test.KeyHex)
|
D | block.go | 358 key, err := hex.DecodeString(test.KeyHex) 379 input, err := hex.DecodeString(inputHex) 390 if iv, err = hex.DecodeString(test.IVHex); err != nil {
|
D | kdf.go | 103 if key, err = hex.DecodeString(test.Key); err != nil {
|
D | hash.go | 93 msg, err := hex.DecodeString(test.MsgHex)
|
/external/pdfium/core/fxcodec/gif/ |
D | cfx_lzwdecompressor.cpp | 106 if (!DecodeString(code)) in Decode() 111 if (!DecodeString(code)) in Decode() 119 if (!DecodeString(code)) in Decode() 163 bool CFX_LZWDecompressor::DecodeString(uint16_t code) { in DecodeString() function in CFX_LZWDecompressor
|
D | cfx_lzwdecompressor.h | 44 bool DecodeString(uint16_t code);
|
/external/llvm-project/flang/include/flang/Parser/ |
D | characters.h | 276 RESULT DecodeString(const std::string &, bool backslashEscapes); 277 extern template std::string DecodeString<std::string, Encoding::LATIN_1>( 279 extern template std::u16string DecodeString<std::u16string, Encoding::UTF_8>( 281 extern template std::u32string DecodeString<std::u32string, Encoding::UTF_8>(
|
/external/llvm-project/flang/lib/Parser/ |
D | characters.cpp | 261 RESULT DecodeString(const std::string &s, bool backslashEscapes) { in DecodeString() function 282 template std::string DecodeString<std::string, Encoding::LATIN_1>( 284 template std::u16string DecodeString<std::u16string, Encoding::UTF_8>( 286 template std::u32string DecodeString<std::u32string, Encoding::UTF_8>(
|
/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/sentencepiece/ |
D | optimized_decoder.h | 42 DecoderResult DecodeString(const std::vector<int>& encoded,
|
D | optimized_decoder.cc | 29 DecoderResult DecodeString(const std::vector<int>& encoded, in DecodeString() function
|
D | optimized_decoder_test.cc | 81 const auto decoded = DecodeString(encoded_vector, converted_model.data()); in TEST()
|
D | sentencepiece_detokenizer_tflite.cc | 77 const auto res = DecodeString(codes_for_split, model_buffer_data); in Eval()
|
D | sentencepiece_detokenizer_op.cc | 70 const auto res = tflite::ops::custom::sentencepiece::DecodeString( in Compute()
|
/external/python/cryptography/docs/development/custom-vectors/hkdf/ |
D | verify_hkdf.go | 17 bytes, err := hex.DecodeString(s)
|
/external/pigweed/pw_tokenizer/ |
D | decode.cc | 174 DecodedArg StringSegment::DecodeString( in DecodeString() function in pw::tokenizer::StringSegment 251 return DecodeString(arguments); in Decode()
|
/external/python/cryptography/docs/development/custom-vectors/arc4/ |
D | verify_arc4.go | 15 bytes, err := hex.DecodeString(s)
|
/external/pdfium/core/fxcodec/flate/ |
D | flatemodule.cpp | 123 void DecodeString(uint32_t code); 156 void CLZWDecoder::DecodeString(uint32_t code) { in DecodeString() function in fxcodec::__anon4e0e838d0111::CLZWDecoder 250 DecodeString(old_code); in Decode() 252 DecodeString(code); in Decode()
|