Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 80) sorted by relevance

1234

/lk-master/external/lib/lwip/netif/ppp/
A Dpppdebug.h53 #define AUTHDEBUG(a, b) LWIP_DEBUGF(a, b) argument
54 #define IPCPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
55 #define UPAPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
56 #define LCPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
63 #define AUTHDEBUG(a, b) argument
64 #define IPCPDEBUG(a, b) argument
65 #define UPAPDEBUG(a, b) argument
66 #define LCPDEBUG(a, b) argument
67 #define FSMDEBUG(a, b) argument
68 #define CHAPDEBUG(a, b) argument
[all …]
A Dmd5.c83 #define FF(a, b, c, d, x, s, ac) \ argument
88 #define GG(a, b, c, d, x, s, ac) \ argument
93 #define HH(a, b, c, d, x, s, ac) \ argument
98 #define II(a, b, c, d, x, s, ac) \ argument
222 u32_t a = buf[0], b = buf[1], c = buf[2], d = buf[3]; in Transform() local
/lk-master/external/platform/pico/rp2_common/hardware_divider/include/hardware/
A Ddivider.h50 static inline void hw_divider_divmod_s32_start(int32_t a, int32_t b) { in hw_divider_divmod_s32_start()
65 static inline void hw_divider_divmod_u32_start(uint32_t a, uint32_t b) { in hw_divider_divmod_u32_start()
247 static inline uint32_t hw_divider_u32_quotient(uint32_t a, uint32_t b) { in hw_divider_u32_quotient()
260 static inline uint32_t hw_divider_u32_remainder(uint32_t a, uint32_t b) { in hw_divider_u32_remainder()
273 static inline int32_t hw_divider_quotient_s32(int32_t a, int32_t b) { in hw_divider_quotient_s32()
286 static inline int32_t hw_divider_remainder_s32(int32_t a, int32_t b) { in hw_divider_remainder_s32()
315 static inline uint32_t hw_divider_u32_quotient_inlined(uint32_t a, uint32_t b) { in hw_divider_u32_quotient_inlined()
330 static inline uint32_t hw_divider_u32_remainder_inlined(uint32_t a, uint32_t b) { in hw_divider_u32_remainder_inlined()
347 static inline int32_t hw_divider_s32_quotient_inlined(int32_t a, int32_t b) { in hw_divider_s32_quotient_inlined()
362 static inline int32_t hw_divider_s32_remainder_inlined(int32_t a, int32_t b) { in hw_divider_s32_remainder_inlined()
/lk-master/lib/libc/include/
A Dstdlib.h29 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
30 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
32 #define ROUNDUP(a, b) (((a) + ((b)-1)) & ~((b)-1)) argument
33 #define ROUNDDOWN(a, b) ((a) & ~((b)-1)) argument
35 #define ALIGN(a, b) ROUNDUP(a, b) argument
36 #define IS_ALIGNED(a, b) (!(((uintptr_t)(a)) & (((uintptr_t)(b))-1))) argument
/lk-master/external/lib/lwip/include/lwip/
A Dsockets.h346 #define accept(a,b,c) lwip_accept(a,b,c) argument
347 #define bind(a,b,c) lwip_bind(a,b,c) argument
348 #define shutdown(a,b) lwip_shutdown(a,b) argument
355 #define listen(a,b) lwip_listen(a,b) argument
356 #define recv(a,b,c,d) lwip_recv(a,b,c,d) argument
358 #define send(a,b,c,d) lwip_send(a,b,c,d) argument
360 #define socket(a,b,c) lwip_socket(a,b,c) argument
362 #define ioctlsocket(a,b,c) lwip_ioctl(a,b,c) argument
365 #define read(a,b,c) lwip_read(a,b,c) argument
366 #define write(a,b,c) lwip_write(a,b,c) argument
[all …]
A Dtcp_impl.h93 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) argument
94 #define TCP_SEQ_LEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) <= 0) argument
95 #define TCP_SEQ_GT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) > 0) argument
96 #define TCP_SEQ_GEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) >= 0) argument
101 #define TCP_SEQ_BETWEEN(a,b,c) (TCP_SEQ_GEQ(a,b) && TCP_SEQ_LEQ(a,c)) argument
/lk-master/lib/libc/
A Dqsort.c37 #define min(a, b) (a) < (b) ? a : b argument
57 swapfunc(char *a, char *b, int n, int swaptype) { in swapfunc()
64 #define swap(a, b) \ argument
72 #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) argument
75 med3(char *a, char *b, char *c, int (*cmp)(const void *, const void *)) { in med3()
/lk-master/lib/fixed_point/include/lib/
A Dfixed_point_debug.h60 debug_mul_u32_u32(uint32_t a, uint32_t b, int a_shift, int b_shift, uint64_t ret) { in debug_mul_u32_u32()
74 debug_u64_mul_u32_fp32_64(uint32_t a, struct fp_32_64 b, uint64_t res_0, uint32_t res_l32_32, uint6… in debug_u64_mul_u32_fp32_64()
88 debug_u32_mul_u64_fp32_64(uint64_t a, struct fp_32_64 b, uint64_t res_l32, uint32_t ret) { in debug_u32_mul_u64_fp32_64()
102 debug_u64_mul_u64_fp32_64(uint64_t a, struct fp_32_64 b, uint64_t res_0, uint32_t res_l32_32, uint6… in debug_u64_mul_u64_fp32_64()
A Dfixed_point.h39 mul_u32_u32(uint32_t a, uint32_t b, int a_shift, int b_shift) { in mul_u32_u32()
46 u64_mul_u32_fp32_64(uint32_t a, struct fp_32_64 b) { in u64_mul_u32_fp32_64()
68 u32_mul_u64_fp32_64(uint64_t a, struct fp_32_64 b) { in u32_mul_u64_fp32_64()
88 u64_mul_u64_fp32_64(uint64_t a, struct fp_32_64 b) { in u64_mul_u64_fp32_64()
/lk-master/lib/libc/include/sys/
A Dtypes.h37 #define TIME_GTE(a, b) ((int32_t)((a) - (b)) >= 0) argument
38 #define TIME_LTE(a, b) ((int32_t)((a) - (b)) <= 0) argument
39 #define TIME_GT(a, b) ((int32_t)((a) - (b)) > 0) argument
40 #define TIME_LT(a, b) ((int32_t)((a) - (b)) < 0) argument
/lk-master/external/platform/cc13xx/cc13xxware/inc/
A Dhw_types.h107 #define HWREGBITW(x, b) \ argument
112 #define HWREGBITH(x, b) \ argument
117 #define HWREGBITB(x, b) \ argument
/lk-master/external/platform/pico/rp2_common/pico_platform/include/pico/
A Dplatform.h44 #define MAX(a, b) ((a)>(b)?(a):(b)) argument
48 #define MIN(a, b) ((b)>(a)?(a):(b)) argument
92 inline static int32_t __mul_instruction(int32_t a, int32_t b) { in __mul_instruction()
102 #define __fast_mul(a, b) __builtin_choose_expr(__builtin_constant_p(b) && !__builtin_constant_p(a),… argument
/lk-master/external/platform/stellaris/ti-driverlib/driverlib/
A Dssi.h134 #define SSIConfig(a, b, c, d, e) \ argument
136 #define SSIDataNonBlockingGet(a, b) \ argument
138 #define SSIDataNonBlockingPut(a, b) \ argument
A Duart.h256 #define UARTConfigSet(a, b, c) \ argument
258 #define UARTConfigGet(a, b, c) \ argument
262 #define UARTCharNonBlockingPut(a, b) \ argument
A Dethernet.h172 #define EthernetPacketNonBlockingGet(a, b, c) \ argument
174 #define EthernetPacketNonBlockingPut(a, b, c) \ argument
A Dcan.h445 #define CANSetBitTiming(a, b) CANBitTimingSet(a, b) argument
446 #define CANGetBitTiming(a, b) CANBitTimingGet(a, b) argument
/lk-master/external/platform/stellaris/ti-driverlib/inc/
A Dhw_types.h69 #define HWREGBITW(x, b) \ argument
72 #define HWREGBITH(x, b) \ argument
75 #define HWREGBITB(x, b) \ argument
/lk-master/external/platform/pico/common/pico_divider/include/pico/
A Ddivider.h52 static inline int32_t divmod_s32s32_rem(int32_t a, int32_t b, int32_t *rem) { in divmod_s32s32_rem()
87 static inline uint32_t divmod_u32u32_rem(uint32_t a, uint32_t b, uint32_t *rem) { in divmod_u32u32_rem()
/lk-master/app/tests/
A Dcbuf_tests.c18 #define ASSERT_EQ(a, b) \ argument
27 #define ASSERT_LEQ(a, b) \ argument
/lk-master/external/platform/cc13xx/cc13xxware/driverlib/
A Drom.h155 #define HapiCrc32(a,b,c) P_HARD_API->Crc32(a,b,c) argument
159 #define HapiProgramFlash(a,b,c) MemBusWrkAroundHapiProgramFlash(a,b,c) argument
161 #define HapiFletcher32(a,b,c) P_HARD_API->Fletcher32(a,b,c) argument
162 #define HapiMinValue(a,b) P_HARD_API->MinValue(a,b) argument
163 #define HapiMaxValue(a,b) P_HARD_API->MaxValue(a,b) argument
164 #define HapiMeanValue(a,b) P_HARD_API->MeanValue(a,b) argument
165 #define HapiStandDeviationValue(a,b) P_HARD_API->StandDeviationValue(a,b) argument
/lk-master/dev/include/dev/
A Ddriver.h68 #define concat(a, b) __ex_concat(a, b) argument
69 #define __ex_concat(a, b) a ## b argument
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/
A Dlpc_types.h145 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
148 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
/lk-master/external/platform/nrfx/drivers/
A Dnrfx_common.h131 #define NRFX_ROUNDED_DIV(a, b) (((a) + ((b) / 2)) / (b)) argument
144 #define NRFX_CEIL_DIV(a, b) ((((a) - 1) / (b)) + 1) argument
/lk-master/dev/timer/arm_generic/
A Darm_generic_timer.c102 #define COMBINE3(a,b,c) a ## b ## c argument
103 #define XCOMBINE3(a,b,c) COMBINE3(a, b, c) argument
213 static void test_time_conversion_check_result(uint64_t a, uint64_t b, uint64_t limit, bool is32) { in test_time_conversion_check_result()
/lk-master/dev/gpio_i2c/
A Dgpio_i2c.c74 static inline bool send_byte(const gpio_i2c_info_t *i, uint32_t b) { in send_byte()
106 static inline void recv_byte(const gpio_i2c_info_t *i, uint8_t *b) { in recv_byte()

Completed in 53 milliseconds

1234