Lines Matching +full:0 +full:x0b
44 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
76 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
85 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
96 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
98 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
100 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
102 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
110 return '0' + i; in hex()
121 for (i = 0; i < len; i++) { in hex_string()
122 hexstr[i * 2] = hex((bytes[i] >> 4) & 0xf); in hex_string()
123 hexstr[i * 2 + 1] = hex(bytes[i] & 0xf); in hex_string()
125 hexstr[len * 2] = '\0'; in hex_string()
159 memset(key, 0, data->blocklen); in test_afsplit()
185 g_assert(qcrypto_init(NULL) == 0); in main()
187 for (i = 0; i < G_N_ELEMENTS(test_data); i++) { in main()