HomeSort by relevance Sort by last modified time
    Searched refs:raw_bytes (Results 1 - 6 of 6) sorted by null

  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
transform.py 39 def bytes2int(raw_bytes):
51 return int(binascii.hexlify(raw_bytes), 16)
93 raw_bytes = [ZERO_BYTE]
96 raw_bytes = []
106 raw_bytes.insert(0, byte(number & 0xFF))
115 return padding + EMPTY_BYTE.join(raw_bytes)
118 def bytes_leading(raw_bytes, needle=ZERO_BYTE):
124 :param raw_bytes:
134 for x in raw_bytes:
185 raw_bytes = b(''
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
i386dynix.c 59 struct external_exec *raw_bytes,
62 struct external_exec *bytes = (struct external_exec *)raw_bytes;
i386os9k.c 33 mh_com *raw_bytes,
36 mh_com *bytes = (mh_com *) raw_bytes;
hp300hpux.c 444 struct external_exec *raw_bytes,
447 struct external_exec *bytes = (struct external_exec *) raw_bytes;
  /system/connectivity/shill/
crypto_util_proxy.cc 107 string raw_bytes; local
108 if (!message.SerializeToString(&raw_bytes)) {
116 if (!StartShimForCommand(kCommandVerify, raw_bytes,
141 string raw_bytes; local
142 if (!message.SerializeToString(&raw_bytes)) {
150 if (!StartShimForCommand(kCommandEncrypt, raw_bytes,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
crypt.py 342 def _urlsafe_b64encode(raw_bytes):
343 if isinstance(raw_bytes, six.text_type):
344 raw_bytes = raw_bytes.encode('utf-8')
345 return base64.urlsafe_b64encode(raw_bytes).decode('ascii').rstrip('=')

Completed in 1221 milliseconds