Home
last modified time | relevance | path

Searched refs:value (Results 1 – 7 of 7) sorted by relevance

/src/klibc/utest/
A DTC_rt_sscanf.c28 int value; in TC_rt_sscanf_basic_int() local
37 float value; in TC_rt_sscanf_basic_float() local
63 char value; in TC_rt_sscanf_basic_char() local
72 int value; in TC_rt_sscanf_hex_1() local
89 int value; in TC_rt_sscanf_oct_1() local
126 int value; in TC_rt_sscanf_width_specifier() local
171 int value; in TC_rt_sscanf_whitespace_skip() local
180 unsigned int value; in TC_rt_sscanf_unsigned_int() local
189 long long value; in TC_rt_sscanf_long_long_int() local
198 short value; in TC_rt_sscanf_short_int() local
[all …]
A DTC_rt_memcmp.c53 float value; member
69 float value; member
/src/klibc/
A Drt_vsnprintf_std.c497 if (!value) { in print_integer()
515 value /= base; in print_integer()
944 if (value != value) { in print_floating_point()
948 if (value < -DBL_MAX) { in print_floating_point()
952 if (value > DBL_MAX) { in print_floating_point()
958 ((value > PRINTF_FLOAT_NOTATION_THRESHOLD) || (value < -PRINTF_FLOAT_NOTATION_THRESHOLD))) { in print_floating_point()
1164 … print_integer(output, ABS_FOR_PRINTING(value), value < 0, base, precision, width, flags); in format_string_loop()
1169 … print_integer(output, ABS_FOR_PRINTING(value), value < 0, base, precision, width, flags); in format_string_loop()
1176 const int value = in format_string_loop() local
1180 … print_integer(output, ABS_FOR_PRINTING(value), value < 0, base, precision, width, flags); in format_string_loop()
[all …]
A DKconfig75 this must be big enough to hold one converted floating-point value including
100 value at the point of expansion).
/src/
A Dkservice.c1046 int __rt_ffs(int value) in __rt_ffs() argument
1048 return __lowest_bit_bitmap[(rt_uint32_t)(value & (value - 1) ^ value) % 37]; in __rt_ffs()
1083 int __rt_ffs(int value) in __rt_ffs() argument
1085 if (value == 0) in __rt_ffs()
1090 if (value & 0xff) in __rt_ffs()
1092 return __lowest_bit_bitmap[value & 0xff] + 1; in __rt_ffs()
1095 if (value & 0xff00) in __rt_ffs()
1097 return __lowest_bit_bitmap[(value & 0xff00) >> 8] + 9; in __rt_ffs()
1100 if (value & 0xff0000) in __rt_ffs()
1102 return __lowest_bit_bitmap[(value & 0xff0000) >> 16] + 17; in __rt_ffs()
[all …]
A Dipc.c331 sem->value = value; in _sem_object_init()
382 RT_ASSERT(value < 0x10000U); in rt_sem_init()
471 RT_ASSERT(value < 0x10000U); in rt_sem_create()
578 sem->value); in _rt_sem_take()
580 if (sem->value > 0) in _rt_sem_take()
583 sem->value --; in _rt_sem_take()
713 sem->value); in rt_sem_release()
769 rt_ubase_t value; in rt_sem_control() local
772 value = (rt_uintptr_t)arg; in rt_sem_control()
779 sem->value = (rt_uint16_t)value; in rt_sem_control()
[all …]
A DKconfig93 prompt "The maximal level value of priority of thread"
179 int "The priority level value of timer thread"

Completed in 19 milliseconds