Home
last modified time | relevance | path

Searched refs:HEX (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/scripts/
H A Dfit-unpack.sh87 HEX=`echo ${VALUE} | awk -v idx=$i '{ print $idx }'`
88 if [ -z ${HEX} ]; then
92 HEX=`printf "%08x" ${HEX}`
93 HASH="${HASH}${HEX}"
/rk3399_rockchip-uboot/tools/buildman/
H A Dkconfiglib.py1960 elif self.type == INT or self.type == HEX:
1966 base = 16 if self.type == HEX else 10
2020 self.type == HEX else str(clamped_val))
2028 new_val = (hex(low) if self.type == HEX else str(low))
2431 (self.type == HEX and _is_base_n(v, 16) )):
2478 elif self.type == INT or self.type == HEX:
3466 UNKNOWN, BOOL, TRISTATE, STRING, HEX, INT = range(6) variable
3470 STRING: "string", HEX: "hex", INT: "int"}
3474 T_INT: INT, T_HEX: HEX}
3478 DEFAULT_VALUE = {BOOL: "n", TRISTATE: "n", STRING: "", INT: "", HEX: ""}