Home
last modified time | relevance | path

Searched refs:hexval (Results 1 – 9 of 9) sorted by relevance

/external/selinux/checkpolicy/
Dpolicy_scan.l57 hexval [0-9A-Fa-f]
265 {digit}+|0x{hexval}+ { return(NUMBER); }
268 {hexval}{0,4}":"{hexval}{0,4}":"({hexval}|[:.])* { return(IPV6_ADDR); }
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
DJavaCharStream.java30 static final int hexval(char c) throws java.io.IOException { in hexval() method in JavaCharStream
337 buffer[bufpos] = c = (char)(hexval(c) << 12 | in readChar()
338 hexval(ReadByte()) << 8 | in readChar()
339 hexval(ReadByte()) << 4 | in readChar()
340 hexval(ReadByte())); in readChar()
/external/u-boot/doc/
DREADME.fuse40 fuse prog [-y] <bank> <word> <hexval> [<hexval>...]
52 fuse override <bank> <word> <hexval> [<hexval>...]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
DJavaCharStream.java28 static final int hexval(char c) throws java.io.IOException { in hexval() method in JavaCharStream
334 buffer[bufpos] = c = (char)(hexval(c) << 12 | in readChar()
335 hexval(ReadByte()) << 8 | in readChar()
336 hexval(ReadByte()) << 4 | in readChar()
337 hexval(ReadByte())); in readChar()
/external/u-boot/tools/
Dpblimage.c93 uint32_t hexval; in check_get_hexval() local
96 if (!sscanf(token, "%x", &hexval)) { in check_get_hexval()
102 *pmem_buf++ = (hexval >> (i * 8)) & 0xff; in check_get_hexval()
Dmicrocode-tool.py31 hexval = value.strip()
32 if hexval:
33 self.words.append(int(hexval, 0))
Dmicrocode-tool31 hexval = value.strip()
32 if hexval:
33 self.words.append(int(hexval, 0))
/external/python/cpython2/Modules/
Dbinascii.c1172 #define hexval(c) table_hex[(unsigned int)(c)] macro
1233 ch = hexval(data[in]) << 4; in binascii_a2b_qp()
1235 ch |= hexval(data[in]); in binascii_a2b_qp()
/external/freetype/
DChangeLog.218169 (is_alpha, is_space, hexval): Renamed to...
8307 * src/type42/t42drivr.c (hexval): Fix typo.
8323 * src/type42/t42drivr.c (hexval): Use more efficient code.