/nrf52832-nimble/rt-thread/components/utilities/utest/ |
H A D | utest_assert.h | 21 void utest_assert_string(const char *a, const char *b, rt_bool_t equal, const char *file, int line,… 22 void utest_assert_buf(const char *a, const char *b, rt_size_t sz, rt_bool_t equal, const char *file… 37 * @macro uassert_int_equal if @a equal to @b, not assert, means passing. Integer type test. 38 * @macro uassert_int_not_equal if @a not equal to @b, not assert, means passing. Integer type test. 39 * @macro uassert_str_equal if @a equal to @b, not assert, means passing. String type test. 40 * @macro uassert_str_not_equal if @a not equal to @b, not assert, means passing. String type test. 41 * @macro uassert_buf_equal if @a equal to @b, not assert, means passing. buf type test. 42 * @macro uassert_buf_not_equal if @a not equal to @b, not assert, means passing. buf type test. 52 #define uassert_int_equal(a, b) __utest_assert((a) == (b), "(" #a ") not equal to (" #b ")") 53 #define uassert_int_not_equal(a, b) __utest_assert((a) != (b), "(" #a ") equal to (" #b ")") [all …]
|
H A D | utest.c | 222 void utest_assert_string(const char *a, const char *b, rt_bool_t equal, const char *file, int line,… in utest_assert_string() argument 229 if (equal) in utest_assert_string() 253 void utest_assert_buf(const char *a, const char *b, rt_size_t sz, rt_bool_t equal, const char *file… in utest_assert_buf() argument 260 if (equal) in utest_assert_buf()
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_saadc.h | 192 … = offsetof(NRF_SAADC_Type, EVENTS_CH[0].LIMITH), ///< Last result is equal or above CH[0].LIM… 193 … = offsetof(NRF_SAADC_Type, EVENTS_CH[0].LIMITL), ///< Last result is equal or below CH[0].LIM… 194 … = offsetof(NRF_SAADC_Type, EVENTS_CH[1].LIMITH), ///< Last result is equal or above CH[1].LIM… 195 … = offsetof(NRF_SAADC_Type, EVENTS_CH[1].LIMITL), ///< Last result is equal or below CH[1].LIM… 196 … = offsetof(NRF_SAADC_Type, EVENTS_CH[2].LIMITH), ///< Last result is equal or above CH[2].LIM… 197 … = offsetof(NRF_SAADC_Type, EVENTS_CH[2].LIMITL), ///< Last result is equal or below CH[2].LIM… 198 … = offsetof(NRF_SAADC_Type, EVENTS_CH[3].LIMITH), ///< Last result is equal or above CH[3].LIM… 199 … = offsetof(NRF_SAADC_Type, EVENTS_CH[3].LIMITL), ///< Last result is equal or below CH[3].LIM… 200 … = offsetof(NRF_SAADC_Type, EVENTS_CH[4].LIMITH), ///< Last result is equal or above CH[4].LIM… 201 … = offsetof(NRF_SAADC_Type, EVENTS_CH[4].LIMITL), ///< Last result is equal or below CH[4].LIM… [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/ |
H A D | def.c | 138 /* characters are not equal an one is in the alphabet range: in lwip_stricmp() 142 /* still not equal */ in lwip_stricmp() 147 /* characters are not equal but none is in the alphabet range */ in lwip_stricmp() 173 /* characters are not equal an one is in the alphabet range: in lwip_strnicmp() 177 /* still not equal */ in lwip_strnicmp() 182 /* characters are not equal but none is in the alphabet range */ in lwip_strnicmp()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/ |
H A D | def.c | 138 /* characters are not equal an one is in the alphabet range: in lwip_stricmp() 142 /* still not equal */ in lwip_stricmp() 147 /* characters are not equal but none is in the alphabet range */ in lwip_stricmp() 173 /* characters are not equal an one is in the alphabet range: in lwip_strnicmp() 177 /* still not equal */ in lwip_strnicmp() 182 /* characters are not equal but none is in the alphabet range */ in lwip_strnicmp()
|
/nrf52832-nimble/rt-thread/components/libc/aio/ |
H A D | posix_aio.c | 186 * shall be submitted at a priority equal to a base scheduling priority minus 198 * immediately prior to the operation with an offset equal to aio_offset and a 199 * whence equal to SEEK_SET. After a successful call to enqueue an asynchronous 249 * is equal to [EINPROGRESS], then the return status for the operation is undefined. 276 * (that is, the error status for the operation is not equal to [EINPROGRESS]) 342 * an offset equal to aio_offset and a whence equal to SEEK_SET. If O_APPEND is 419 * be ignored. If the aio_lio_opcode element is equal to LIO_READ, then an I/O operation 420 * is submitted as if by a call to aio_read() with the aiocbp equal to the address 421 * of the aiocb structure. If the aio_lio_opcode element is equal to LIO_WRITE, then 422 * an I/O operation is submitted as if by a call to aio_write() with the aiocbp equal
|
/nrf52832-nimble/packages/NimBLE-latest/ext/tinycrypt/include/tinycrypt/ |
H A D | utils.h | 82 * @brief Constant-time algorithm to compare if two sequences of bytes are equal 83 * @return Returns 0 if equal, and non-zero otherwise
|
/nrf52832-nimble/nordic/nrfx/soc/ |
H A D | nrfx_atomic.h | 197 * If those are equal, replaces the former with desired. Otherwise, loads the actual value 204 * @retval true @p *p_data was equal to @p *p_expected. 205 * @retval false @p *p_data was not equal to @p *p_expected.
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | ip6_zone.h | 50 * having a scope. For all these addresses, the zone is equal to the interface. 123 /** Is the zone field of the given IPv6 address equal to the given zone index? (0/1) */ 126 /** Are the zone fields of the given IPv6 addresses equal? (0/1) 247 * @param src source IPv6 address (const); may be equal to dest.
|
/nrf52832-nimble/nordic/nrfx/drivers/ |
H A D | nrfx_common.h | 180 * In Nordic SoCs the IRQ number assigned to a peripheral is equal to the ID 253 * the peripheral base address, and is equal (thus, can be directly cast) to 269 * the peripheral base address, and is equal (thus, can be directly cast) to
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/include/nimble/ |
H A D | ble_hci_trans.h | 48 * If you want all events to be given equal treatment, then you should allocate 57 * then it treats all events with equal priority.
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/ |
H A D | inftrees.c | 80 for codes with equal lengths. Then the code starts with all zero bits 232 /* replicate for those indices with low len bits equal to huff */ 294 len is equal to curr + drop, so there is no loop needed to increment
|
H A D | deflate.c | 157 #define EQUAL 0 macro 158 /* result of memcmp for equal strings */ 762 * avail_in equal to zero. There won't be anything to do, 1016 * return its length. Matches shorter or equal to prev_length are discarded, 1017 * in which case the result is equal to prev_length and match_start is 1094 * always equal when the other bytes match, given that the hash keys 1095 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at 1129 * are always equal when the other bytes match, given that 1130 * the hash keys are equal and that HASH_BITS >= 8. 1202 * are always equal when the other bytes match, given that [all …]
|
H A D | FAQ | 31 buffer is equal to the total size of the compressed buffer and not 38 zero. When setting the parameter flush equal to Z_FINISH, also make sure
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/docs/ |
H A D | kconfig-language.txt | 154 or equal to the first symbol and smaller than or equal to the second 213 (2) If the values of both symbols are equal, it returns 'y', 215 (3) If the values of both symbols are equal, it returns 'n',
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/transport/socket/ |
H A D | syscfg.yml | 42 only HCI, this number should be equal to the number of mbufs in
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/transport/uart/ |
H A D | syscfg.yml | 42 only HCI, this number should be equal to the number of mbufs in
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/transport/emspi/ |
H A D | syscfg.yml | 57 only HCI, this number should be equal to the number of mbufs in
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/apps/snmp/ |
H A D | snmp_core.c | 601 * @return -1: OID1<OID2 1: OID1 >OID2 0: equal 623 /* common part of both OID's is equal, compare length */ in snmp_oid_compare() 631 /* they are equal */ in snmp_oid_compare() 637 * Check of two OIDs are equal 642 * @return 1: equal 0: non-equal
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/apps/snmp/ |
H A D | snmp_core.c | 620 * @return -1: OID1<OID2 1: OID1 >OID2 0: equal 642 /* common part of both OID's is equal, compare length */ in snmp_oid_compare() 650 /* they are equal */ in snmp_oid_compare() 656 * Check of two OIDs are equal 661 * @return 1: equal 0: non-equal
|
/nrf52832-nimble/packages/NimBLE-latest/ext/tinycrypt/documentation/ |
H A D | tinycrypt.rst | 147 length. The security of the output is exactly equal to the 172 length. The security of the output is exactly equal to the
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/netif/ |
H A D | ieee802154.h | 94 …_PANID_COMPR 0x0040 /* bit 6: PAN ID Compression (src and dst are equal, src PAN ID omitte…
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/include/host/ |
H A D | ble_uuid.h | 140 * @return 0 if the two UUIDs are equal, nonzero if the UUIDs differ.
|
H A D | ble_gatt.h | 448 * @param num_attrs The number of characteristics to write; equal 623 * Indicates the gatt operation being performed. This is equal to one of 671 * equal to one of the following values:
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/nfs/rpc/ |
H A D | rpc_msg.h | 146 unsigned long cb_rpcvers; /* must be equal to two */
|