Lines Matching refs:value
175 * tomoyo_parse_ulong - Parse an "unsigned long" value.
182 * The @src is updated to point the first character after the value
217 * tomoyo_print_ulong - Print an "unsigned long" value.
221 * @value: An "unsigned long" value.
222 * @type: Type of @value.
227 const unsigned long value, const u8 type)
230 snprintf(buffer, buffer_len, "%lu", value);
232 snprintf(buffer, buffer_len, "0%lo", value);
234 snprintf(buffer, buffer_len, "0x%lX", value);
307 * tomoyo_byte_range - Check whether the string is a \ooo style octal value.
311 * Returns true if @str is a \ooo style octal value, false otherwise.
336 * tomoyo_make_byte - Make byte value from three octal characters.
342 * Returns byte value.