Home
last modified time | relevance | path

Searched refs:zEncode (Results 1 – 3 of 3) sorted by relevance

/AliOS-Things-master/components/linkkit/infra/
A Dinfra_string.c18 char *zEncode = "0123456789ABCDEF"; in infra_hex2str() local
22 output[j++] = zEncode[(input[i] >> 4) & 0xf]; in infra_hex2str()
23 output[j++] = zEncode[(input[i]) & 0xf]; in infra_hex2str()
120 static char *zEncode[] = { "0123456789abcdef", "0123456789ABCDEF" }; in LITE_hexbuf_convert() local
128 out[j++] = zEncode[idx][(a >> 4) & 0xf]; in LITE_hexbuf_convert()
129 out[j++] = zEncode[idx][a & 0xf]; in LITE_hexbuf_convert()
/AliOS-Things-master/components/linkkit/dev_sign/
A Ddev_sign_mqtt.c49 char *zEncode = "0123456789abcdef"; in _hex2str() local
53 output[j++] = zEncode[(input[i] >> 4) & 0xf]; in _hex2str()
54 output[j++] = zEncode[(input[i]) & 0xf]; in _hex2str()
/AliOS-Things-master/components/mqtt/example/
A Daiot_mqtt_sign.c25 char *zEncode = "0123456789ABCDEF"; in _hex2str() local
29 output[j++] = zEncode[(input[i] >> 4) & 0xf]; in _hex2str()
30 output[j++] = zEncode[(input[i]) & 0xf]; in _hex2str()

Completed in 4 milliseconds