Lines Matching defs:attr_value
935 unsigned attr_value)
939 if (attr_value > 0xffffff)
940 snprintf(buf, buf_size, "0x%x", attr_value);
941 else if (attr_value > 0xffff)
942 snprintf(buf, buf_size, "0x%06x", attr_value);
943 else if (attr_value > 0xff)
944 snprintf(buf, buf_size, "0x%04x", attr_value);
946 snprintf(buf, buf_size, "0x%02x", attr_value);
952 unsigned attr_value)
956 snprintf(buf, buf_size, "%d", attr_value);