Home
last modified time | relevance | path

Searched refs:bytestring (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/oned/
DBC_OnedUPCAReader.cpp45 CFX_ByteString bytestring = in DecodeRow() local
48 CFX_ByteString temp = MaybeReturnResult(bytestring, e); in DecodeRow()
57 CFX_ByteString bytestring = in DecodeRow() local
60 CFX_ByteString temp = MaybeReturnResult(bytestring, e); in DecodeRow()
65 CFX_ByteString bytestring = m_ean13Reader->Decode(image, e); in Decode() local
67 CFX_ByteString temp = MaybeReturnResult(bytestring, e); in Decode()
74 CFX_ByteString bytestring = m_ean13Reader->Decode(image, hints, e); in Decode() local
76 CFX_ByteString temp = MaybeReturnResult(bytestring, e); in Decode()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/glacier/
Dtest_utils.py72 bytestring = b'a' * (2 * 1024 * 1024 + 20)
73 chunks = chunk_hashes(bytestring)
89 def calculate_tree_hash(self, bytestring): argument
91 calculated = bytes_to_hex(tree_hash(chunk_hashes(bytestring)))
94 len(bytestring), end - start)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
Dutils.py74 def chunk_hashes(bytestring, chunk_size=_MEGABYTE): argument
75 chunk_count = int(math.ceil(len(bytestring) / float(chunk_size)))
80 hashes.append(hashlib.sha256(bytestring[start:end]).digest())
/external/boringssl/src/crypto/bytestring/
DCMakeLists.txt4 bytestring target
/external/boringssl/src/crypto/
DCMakeLists.txt95 add_subdirectory(bytestring)
165 $<TARGET_OBJECTS:bytestring>
/external/boringssl/src/util/
Ddoc.config9 "include/openssl/bytestring.h",
/external/pdfium/xfa/src/fxbarcode/
DBC_BarCode.cpp820 CFX_ByteString bytestring = m_pBCReader->Decode(&bitmap, 0, e); in Decode() local
822 return CFX_WideString::FromUTF8(bytestring, bytestring.GetLength()); in Decode()
/external/boringssl/
Dsources.mk90 src/crypto/bytestring/ber.c\
91 src/crypto/bytestring/cbb.c\
92 src/crypto/bytestring/cbs.c\
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417ScanningDecoder.cpp678 CFX_ByteString bytestring; in decodeCodewords() local
680 codewords, bytestring.FormatInteger(ecLevel), e); in decodeCodewords()
/external/chromium-trace/catapult/third_party/beautifulsoup4/
DNEWS.txt207 rather than an empty bytestring. [bug=1020387]
/external/chromium-trace/catapult/third_party/beautifulsoup4/doc/source/
Dindex.rst2060 You can also call ``encode()`` to get a bytestring, and ``decode()``
3049 The ``prettify()`` method now returns a Unicode string, not a bytestring.