Home
last modified time | relevance | path

Searched full:integer (Results 1 – 25 of 343) sorted by relevance

12345678910>>...14

/Zephyr-latest/include/zephyr/sys/
Dbyteorder.h50 * @brief Convert 16-bit integer from little-endian to host endianness.
52 * @param val 16-bit integer in little-endian format.
54 * @return 16-bit integer in host endianness.
58 * @brief Convert 16-bit integer from host endianness to little-endian.
60 * @param val 16-bit integer in host endianness.
62 * @return 16-bit integer in little-endian format.
66 * @brief Convert 24-bit integer from little-endian to host endianness.
68 * @param val 24-bit integer in little-endian format.
70 * @return 24-bit integer in host endianness.
74 * @brief Convert 24-bit integer from host endianness to little-endian.
[all …]
Dmath_extras.h27 * @name Unsigned integer addition with overflow detection.
74 * @name Unsigned integer multiplication with overflow detection.
128 * @brief Count the number of leading zero bits in a 32-bit integer.
129 * @param x Integer to count leading zeros in.
135 * @brief Count the number of leading zero bits in a 64-bit integer.
136 * @param x Integer to count leading zeros in.
152 * @brief Count the number of trailing zero bits in a 32-bit integer.
153 * @param x Integer to count trailing zeros in.
159 * @brief Count the number of trailing zero bits in a 64-bit integer.
160 * @param x Integer to count trailing zeros in.
/Zephyr-latest/include/zephyr/bluetooth/
Dbyteorder.h32 * @param _v 16-bit integer in host endianness.
46 * @param _v 24-bit integer in host endianness.
60 * @param _v 32-bit integer in host endianness.
74 * @param _v 40-bit integer in host endianness.
88 * @param _v 48-bit integer in host endianness.
102 * @param _v 64-bit integer in host endianness.
116 * @param _v 16-bit integer in host endianness.
128 * @param _v 24-bit integer in host endianness.
140 * @param _v 32-bit integer in host endianness.
152 * @param _v 40-bit integer in host endianness.
[all …]
/Zephyr-latest/drivers/gnss/
Dgnss_parse.h52 * @brief Parse integer string of configurable base to integer
58 * @param integer Destination for parsed integer
63 int gnss_parse_atoi(const char *str, uint8_t base, int32_t *integer);
Dgnss_parse.c135 int gnss_parse_atoi(const char *str, uint8_t base, int32_t *integer) in gnss_parse_atoi() argument
140 __ASSERT(integer != NULL, "integer argument must be provided"); in gnss_parse_atoi()
142 *integer = (int32_t)strtol(str, &end, (int)base); in gnss_parse_atoi()
/Zephyr-latest/lib/libc/picolibc/
DKconfig40 bool "full support for integer/floating point values in printf/scanf"
42 Include full floating point and integer support in printf/scanf
46 bool "full support for integer values, including long long, in printf/scanf"
49 Includes full integer with long long, but no floating
53 bool "full support for integer values, other than long long, in printf/scanf"
56 Include full integer other than long long, but no floating point
60 bool "limited support for integer values in printf/scanf"
63 Include limited integer and no floating point support in
136 Includes support for positional args (e.g. $1) in integer-only
/Zephyr-latest/arch/riscv/
DKconfig.isa7 RV32I Base Integer Instruction Set - 32bit
12 RV32E Base Integer Instruction Set (Embedded) - 32bit
18 RV64I Base Integer Instruction Set - 64bit
23 RV128I Base Integer Instruction Set - 128bit
28 (M) - Standard Extension for Integer Multiplication and Division
30 Standard integer multiplication and division instruction extension,
32 values held in two integer registers.
/Zephyr-latest/include/zephyr/drivers/sensor/
Dsgp40.h23 /* Temperature in degC; only the integer part is used */
25 /* Relative Humidity in %; only the integer part is used */
Dxbr818.h31 * Noise floor Threshold for Radar, 16 first LSBs of the integer part.
35 * RF Power for Radar, 0 to 7, LSB of the integer part.
/Zephyr-latest/include/zephyr/math/
Dilog2.h25 * This calculates the floor of log2 (integer log2) for 32-bit
26 * unsigned integer.
37 * @return Integer log2 of @n
77 * @brief Calculate integer log2
79 * This calculates the floor of log2 (integer of log2).
85 * @return Integer log2 of @p n
/Zephyr-latest/scripts/ci/es_upload/
Dzephyr_twister_flat_footprint_index.json25 "type": "integer"
79 "type": "integer"
110 "type": "integer"
Dzephyr_twister_flat_recording_index.json25 "type": "integer"
90 "type": "integer"
189 "type": "integer"
/Zephyr-latest/dts/bindings/sensor/
Dams,tsl2540.yaml23 Integer value for a representation with 5 decimal points.
32 Integer value for a representation with 5 decimal points.
/Zephyr-latest/include/zephyr/llext/
Delf.h30 /** Unsigned medium integer */
34 /** Signed integer */
36 /** Unsigned integer */
41 /** Unsigned medium integer */
45 /** Signed integer */
47 /** Unsigned integer */
49 /** Signed long integer */
51 /** Unsigned long integer */
440 elf32_word d_val; /**< Integer value */
451 elf64_xword d_val; /**< Integer value */
[all …]
/Zephyr-latest/lib/os/
DKconfig.cbprintf28 prompt "Control range of convertible integer values"
33 bool "Convert the full range of integer values"
46 bool "Convert only integer values that fit in 32 bits"
48 Build cbprintf with buffers sized to support converting integer
166 (integer).
/Zephyr-latest/modules/nanopb/
DKconfig42 bool "Disable 64-bit integer fields"
44 Disable support of 64-bit integer fields, for old compilers or
/Zephyr-latest/scripts/coccinelle/
Dint_ms_to_timeout.cocci4 // Convert legacy integer timeouts to timeout API
7 // integer milliseconds, when they were intended to be timeout values
8 // produced by specific constants and macros. Convert integer
11 // A few expressions that are clearly integer values are also
172 // ** Handle call sites where an integer parameter is used in a
224 msg = "WARNING: replace integer parameter {} with timeout in {}".format(param, fn)
/Zephyr-latest/include/zephyr/net/
Dsntp.h77 * @param ts Timestamp including integer and fractional seconds since
89 * @param ts Timestamp including integer and fractional seconds since
134 * @param ts Timestamp including integer and fractional seconds since
156 * @param ts Timestamp including integer and fractional seconds since
174 * @param ts Timestamp including integer and fractional seconds since
/Zephyr-latest/lib/posix/options/
DKconfig.proc133 The sysconf() function is implemented as a large integer-integer array. The advantage if this
/Zephyr-latest/soc/intel/common/
Dsoc_gpio.c25 args[0].Integer.Value = bank_idx; in gpio_info_acpi_get()
28 args[1].Integer.Value = field_idx; in gpio_info_acpi_get()
36 *ret_val = gpio_obj.Integer.Value; in gpio_info_acpi_get()
/Zephyr-latest/tests/kconfig/configdefault/
DKconfig200 # configdefault does not define integer
202 int "Undefined integer"
209 # Integer default
/Zephyr-latest/include/zephyr/bluetooth/audio/
Dlc3.h101 * @param _len Octets per frame (16-bit integer)
102 * @param _frames_per_sdu Frames per SDU (8-bit integer). This value is optional and will be
129 * @param _len Octets per frame (16-bit integer)
130 * @param _frames_per_sdu Frames per SDU (8-bit integer)
/Zephyr-latest/tests/unit/intmath/
Dmain.c15 /* Recent GCC's can detect integer overflow in static expressions and
16 * will warn about it helpfully. But obviously integer overflow is
69 * @brief Test integer arithmetic operations
/Zephyr-latest/dts/bindings/ipc/
Dnordic,nrf-ipct-common.yaml22 the source. This array is then comprised of a 3-integer-wide "unit"
37 the sink. This array is then comprised of a 3-integer-wide "unit"
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/
Dlog_parser.py37 # Python doesn't support %ll for integer specifiers, so remove extra 'l'
43 # Python doesn't support %hh for integer specifiers, so remove extra 'h'

12345678910>>...14