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

  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PoloUtil.java 92 * @param hexstr the string of hex characters
95 public static byte[] hexStringToBytes(String hexstr) {
96 if (hexstr == null || hexstr.length() == 0 || (hexstr.length() % 2) != 0) {
100 byte[] result = new byte[hexstr.length() / 2];
102 result[i] = (byte) Integer.parseInt(hexstr.substring(2 * i, 2 * (i + 1)),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_md5.py 10 def hexstr(s): function
22 self.assertEqual(hexstr(md5(s).digest()), expected)
41 self.assertEqual(hexstr(m.digest()), h)
test_hashlib.py 26 def hexstr(s): function
136 self.assertTrue(hexstr(h.digest()) == h.hexdigest())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_md5.py 10 def hexstr(s): function
22 self.assertEqual(hexstr(md5(s).digest()), expected)
41 self.assertEqual(hexstr(m.digest()), h)
test_hashlib.py 26 def hexstr(s): function
136 self.assertTrue(hexstr(h.digest()) == h.hexdigest())
  /external/chromium_org/components/component_updater/
component_updater_utils.cc 173 std::string HexStringToID(const std::string& hexstr) {
175 for (size_t i = 0; i < hexstr.size(); ++i) {
178 base::StringPiece(hexstr.begin() + i, hexstr.begin() + i + 1),
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 191 char hexstr[ 16*3 + 5] = {0}; local
214 strncat(hexstr, bytestr, sizeof(hexstr)-strlen(hexstr)-1);
222 bdt_log("[%4.4s] %-50.50s %s\n", addrstr, hexstr, charstr);
223 hexstr[0] = 0;
227 strncat(hexstr, " ", sizeof(hexstr)-strlen(hexstr)-1);
233 if (strlen(hexstr) > 0)
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
proto.h 51 extern int hexstr(char **);
b.c 234 int hexstr(char **pp) /* find and eval hex string at pp, return new p */ function
273 c = hexstr(&p); /* this adds a null if number is invalid */
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 1671 char hexstr[16]; local
    [all...]

Completed in 279 milliseconds