Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/
Dwhitespaces.js44 var onebyte = "\u007E"; variable
105 test_regexp(c + onebyte);
107 test_trim(c, onebyte + "trim");
109 test_parseInt(c, onebyte);
111 test_eval(c, onebyte);
/external/iproute2/tc/
Dm_ipt.c319 unsigned int onebyte; in dotted_to_addr() local
333 if (string_to_number(p, 0, 255, &onebyte) == -1) in dotted_to_addr()
336 addrp[i] = (unsigned char) onebyte; in dotted_to_addr()
341 if (string_to_number(p, 0, 255, &onebyte) == -1) in dotted_to_addr()
344 addrp[3] = (unsigned char) onebyte; in dotted_to_addr()
/external/iptables/libxtables/
Dxtables.c1263 unsigned int onebyte; in __numeric_to_ipaddr() local
1279 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr()
1282 addrp[i] = onebyte; in __numeric_to_ipaddr()
1290 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr()
1293 addrp[i] = onebyte; in __numeric_to_ipaddr()
1298 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr()
1301 addrp[3] = onebyte; in __numeric_to_ipaddr()