Lines Matching defs:o
54 if (((p[0] == 'o') && (p[1] == 'n')) ||
60 if (((p[0] == 'n') && (p[1] == 'o')) ||
66 if (((p[0] == 'o') && (p[1] == 'f') && (p[2] == 'f')) ||
339 unsigned long o[RTE_ETHER_ADDR_LEN];
345 o[i] = strtoul(a, &end, 16);
349 } while (++i != RTE_DIM(o) && end[0] != 0);
358 if (o[i] > UINT8_MAX)
360 ether_addr.addr_bytes[i] = (uint8_t)o[i];
365 if (o[i] > UINT16_MAX)
367 ether_addr.addr_bytes[i * 2] = (uint8_t)(o[i] >> 8);
368 ether_addr.addr_bytes[i * 2 + 1] = (uint8_t)(o[i] & 0xff);