/btstack/3rd-party/lwip/core/src/include/lwip/ |
H A D | arch.h | 219 #define lwip_in_range(c, lo, up) ((u8_t)(c) >= (lo) && (u8_t)(c) <= (up)) argument 220 #define lwip_isdigit(c) lwip_in_range((c), '0', '9') argument 221 #define lwip_isxdigit(c) (lwip_isdigit(c) || lwip_in_range((c), 'a', 'f') || lwip_in_range… argument 222 #define lwip_islower(c) lwip_in_range((c), 'a', 'z') argument 223 #define lwip_isspace(c) ((c) == ' ' || (c) == '\f' || (c) == '\n' || (c) == '\r' || (c) =… argument 224 #define lwip_isupper(c) lwip_in_range((c), 'A', 'Z') argument 225 #define lwip_tolower(c) (lwip_isupper(c) ? (c) - 'A' + 'a' : c) argument 226 #define lwip_toupper(c) (lwip_islower(c) ? (c) - 'a' + 'A' : c) argument 229 #define lwip_isdigit(c) isdigit((unsigned char)(c)) argument 230 #define lwip_isxdigit(c) isxdigit((unsigned char)(c)) argument [all …]
|
H A D | ip_addr.h | 83 #define IPADDR4_INIT_BYTES(a,b,c,d) IPADDR4_INIT(PP_HTONL(LWIP_MAKEU32(a,b,c,d))) argument 86 #define IPADDR6_INIT(a, b, c, d) { { { { a, b, c, d } IPADDR6_ZONE_INIT } }, IPADDR_TYPE_V6 } argument 88 #define IPADDR6_INIT_HOST(a, b, c, d) { { { { PP_HTONL(a), PP_HTONL(b), PP_HTONL(c), PP_HTONL(d) } … argument 123 #define IP_ADDR4(ipaddr,a,b,c,d) do { IP4_ADDR(ip_2_ip4(ipaddr),a,b,c,d); \ argument 272 #define IPADDR4_INIT_BYTES(a,b,c,d) IPADDR4_INIT(PP_HTONL(LWIP_MAKEU32(a,b,c,d))) argument 283 #define IP_ADDR4(ipaddr,a,b,c,d) IP4_ADDR(ipaddr,a,b,c,d) argument 319 #define IPADDR6_INIT(a, b, c, d) { { a, b, c, d } IPADDR6_ZONE_INIT } argument 320 #define IPADDR6_INIT_HOST(a, b, c, d) { { PP_HTONL(a), PP_HTONL(b), PP_HTONL(c), PP_HTONL… argument
|
H A D | api.h | 301 #define API_EVENT(c,e,l) if (c->callback) { \ argument 311 #define netconn_new_with_callback(t, c) netconn_new_with_proto_and_callback(t, 0, c) argument 322 #define netconn_peer(c,i,p) netconn_getaddr(c,i,p,0) argument 324 #define netconn_addr(c,i,p) netconn_getaddr(c,i,p,1) argument
|
/btstack/port/samv71-xplained-atwilc3000/ASF/sam/utils/preprocessor/ |
H A D | tpaste.h | 70 #define TPASTE3( a, b, c) a##b##c argument 71 #define TPASTE4( a, b, c, d) a##b##c##d argument 72 #define TPASTE5( a, b, c, d, e) a##b##c##d##e argument 73 #define TPASTE6( a, b, c, d, e, f) a##b##c##d##e##f argument 74 #define TPASTE7( a, b, c, d, e, f, g) a##b##c##d##e##f##g argument 75 #define TPASTE8( a, b, c, d, e, f, g, h) a##b##c##d##e##f##g##h argument 76 #define TPASTE9( a, b, c, d, e, f, g, h, i) a##b##c##d##e##f##g##h##i argument 77 #define TPASTE10(a, b, c, d, e, f, g, h, i, j) a##b##c##d##e##f##g##h##i##j argument 91 #define ATPASTE3( a, b, c) TPASTE3( a, b, c) argument 92 #define ATPASTE4( a, b, c, d) TPASTE4( a, b, c, d) argument [all …]
|
/btstack/chipset/cinnamon/ |
H A D | hopping.c | 43 void hopping_init( hopping_t *c ) { in hopping_init() 49 void hopping_set_channel_map( hopping_t *c, const uint8_t *chm ) { in hopping_set_channel_map() 70 void hopping_csa1_set_hop_increment( hopping_t *c, uint8_t hopIncrement ){ in hopping_csa1_set_hop_increment() 76 uint8_t hopping_csa1_get_next_channel( hopping_t *c ) { in hopping_csa1_get_next_channel() 88 void hopping_csa2_set_access_address( hopping_t *c, uint32_t accessAddress ){ in hopping_csa2_set_access_address() 106 static uint16_t hopping_csa2_prn_e(hopping_t *c, uint16_t counter){ in hopping_csa2_prn_e() 121 uint8_t hopping_csa2_get_channel_for_counter( hopping_t *c, uint16_t counter ){ in hopping_csa2_get_channel_for_counter()
|
/btstack/port/msp432p401lp-cc256x/ti/devices/msp432p4xx/driverlib/ |
H A D | crc32.h | 212 #define CRC32_setSeedMultipleInstance(a,b,c) CRC32_setSeed(b,c) argument 213 #define CRC32_set8BitDataMultipleInstance(a,b,c) CRC32_set8BitData(b,c) argument 214 #define CRC32_set16BitDataMultipleInstance(a,b,c) CRC32_set16BitData(b,c) argument 216 #define CRC32_set8BitDataReversedMultipleInstance(a,b,c) CRC32_set8BitDataReversed(b,c) argument 217 #define CRC32_set16BitDataReversedMultipleInstance(a,b,c) CRC32_set16BitDataReversed(b,c) argument
|
H A D | rtc_c.h | 622 #define RTC_C_setCalibrationDataMultipleInstance(a,b,c) RTC_C_setCalibrationData(b,c) argument 623 #define RTC_C_setTemperatureCompensationMultipleInstance(a,b,c) RTC_C_setTemperatureCompensation(b,… argument 624 #define RTC_C_initCalendarMultipleInstance(a,b,c) RTC_C_initCalendar(b,c) argument 626 #define RTC_C_setCalendarAlarmMultipleInstance(a,b,c,d,e) RTC_C_setCalendarAlarm(b,c,d,e) argument 628 #define RTC_C_definePrescaleEventMultipleInstance(a,b,c) RTC_C_definePrescaleEvent(b,c) argument 630 #define RTC_C_setPrescaleValueMultipleInstance(a,b,c) RTC_C_setPrescaleValue(b,c) argument
|
H A D | adc14.h | 1020 #define ADC14_initModuleMultipleInstance(a,b,c,d,e) ADC14_initModule(b,c,d,e) argument 1023 #define ADC14_setSampleHoldTriggerMultipleInstance(a,b,c) ADC14_setSampleHoldTrigger(b,c) argument 1024 #define ADC14_setSampleHoldTimeMultipleInstance(a,b,c) ADC14_setSampleHoldTime(b,c) argument 1025 #define ADC14_configureMultiSequenceModeMultipleInstance(a,b,c,d) ADC14_configureMultiSequenceMode(… argument 1026 #define ADC14_configureSingleSampleModeMultipleInstance(a,b,c) ADC14_configureSingleSampleMode(b,c) argument 1031 #define ADC14_configureConversionMemoryMultipleInstance(a,b,c,d,e) ADC14_configureConversionMemory(… argument 1032 #define ADC14_enableComparatorWindowMultipleInstance(a,b,c) ADC14_enableComparatorWindow(b,c) argument 1034 #define ADC14_setComparatorWindowValueMultipleInstance(a,b,c,d) ADC14_setComparatorWindowValue(b,c,… argument 1038 #define ADC14_getResultArrayMultipleInstance(a,b,c,d) ADC14_getResultArray(b,c,d) argument
|
H A D | wdt_a.h | 272 #define WDT_A_initWatchdogTimerMultipleTimer(a,b,c) WDT_A_initWatchdogTimer(b,c) argument 273 #define WDT_A_initIntervalTimerMultipleTimer(a,b,c) WDT_A_initIntervalTimer(b,c) argument
|
/btstack/3rd-party/yxml/ |
H A D | yxml.c | 98 #define yxml_isChar(c) 1 argument 100 #define yxml_isSP(c) ((c == 0x20) || (c == 0x09) || (c == 0x0a)) argument 101 #define yxml_isAlpha(c) ( ((c|32)-'a') < 26) argument 102 #define yxml_isNum(c) ((c-'0') < 10) argument 103 #define yxml_isHex(c) (yxml_isNum(c) || (((c|32)-'a') < 6)) argument 104 #define yxml_isEncName(c) (yxml_isAlpha(c) || yxml_isNum(c) || (c == '.') || (c == '_') || (c == '-… argument 105 #define yxml_isNameStart(c) (yxml_isAlpha(c) || (c == ':') || (c == '_') || (c >= 128)) argument 106 #define yxml_isName(c) (yxml_isNameStart(c) || yxml_isNum(c) || (c == '-') || (c == '.')) argument 108 #define yxml_isAttValue(c) (yxml_isChar(c) && (c != x->quote) && (c != '<') && (c != '&')) argument 112 #define yxml_isRef(c) (yxml_isNum(c) || yxml_isAlpha(c) || (c == '#')) argument [all …]
|
/btstack/3rd-party/lwip/core/src/netif/ |
H A D | slipif.c | 121 u8_t c; in slipif_output() local 207 slipif_rxbyte(struct netif *netif, u8_t c) in slipif_rxbyte() 310 slipif_rxbyte_input(struct netif *netif, u8_t c) in slipif_rxbyte_input() 332 u8_t c; in slipif_loop_thread() local 428 u8_t c; in slipif_poll() local
|
/btstack/platform/wiced/ |
H A D | btstack_stdin_wiced.c | 54 char c = (char)(uintptr_t) p; in stdin_reader_notify() local 64 uint8_t c = getchar(); in stdin_reader_thread_process() local 70 void btstack_stdin_setup(void (*handler)(char c)){ in btstack_stdin_setup()
|
/btstack/3rd-party/lwip/core/src/core/ipv6/ |
H A D | icmp6.c | 220 icmp6_dest_unreach(struct pbuf *p, enum icmp6_dur_code c) in icmp6_dest_unreach() 252 icmp6_time_exceeded(struct pbuf *p, enum icmp6_te_code c) in icmp6_time_exceeded() 273 icmp6_time_exceeded_with_addrs(struct pbuf *p, enum icmp6_te_code c, in icmp6_time_exceeded_with_addrs() 292 icmp6_param_problem(struct pbuf *p, enum icmp6_pp_code c, const void *pointer) in icmp6_param_problem()
|
/btstack/3rd-party/lc3-google/src/ |
H A D | sns.c | 417 LC3_HOT static void normalize(const int *c, float *cn) in normalize() 586 const float *c, int shape, int gain, float *scf) in unquantize() 606 static void enum_mvpq(const int *c, int n, int *idx, bool *ls) in enum_mvpq() 638 static void deenum_mvpq(int idx, bool ls, int npulses, int *c, int n) in deenum_mvpq() 677 static void enumerate(int shape, const int *c, in enumerate() 694 int idx_a, bool ls_a, int idx_b, bool ls_b, int *c) in deenumerate() 786 int c[4][16]; in lc3_sns_analyze() local 812 int c[16]; in lc3_sns_synthesize() local
|
H A D | ltpf.c | 764 const float *c, const int w, int fade) in synthesize_template() 818 const float *x0, float *x, int n, const float *c, int fade) in synthesize_4() 824 const float *x0, float *x, int n, const float *c, int fade) in synthesize_6() 830 const float *x0, float *x, int n, const float *c, int fade) in synthesize_8() 836 const float *x0, float *x, int n, const float *c, int fade) in synthesize_12() 881 float c[2 * MAX_FILTER_WIDTH]; in lc3_ltpf_synthesize() local
|
/btstack/3rd-party/segger-rtt/ |
H A D | SEGGER_RTT_printf.c | 107 static void _StoreChar(SEGGER_RTT_PRINTF_DESC * p, char c) { in _StoreChar() 138 char c; in _PrintUnsigned() local 318 char c; in SEGGER_RTT_vprintf() local
|
/btstack/platform/embedded/ |
H A D | btstack_stdin_embedded.c | 85 static void btstack_stdin_handler(char c){ in btstack_stdin_handler() 103 void btstack_stdin_setup(void (*handler)(char c)){ in btstack_stdin_setup()
|
/btstack/3rd-party/lwip/core/src/netif/ppp/polarssl/ |
H A D | md4.c | 115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in md4_process() argument 138 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in md4_process() argument 161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() argument
|
/btstack/3rd-party/lc3-google/test/neon/ |
H A D | neon.h | 215 static float32x2_t vfma_f32(float32x2_t a, float32x2_t b, float32x2_t c) in vfma_f32() 222 static float32x4_t vfmaq_f32(float32x4_t a, float32x4_t b, float32x4_t c) in vfmaq_f32() 230 static float32x2_t vfms_f32(float32x2_t a, float32x2_t b, float32x2_t c) in vfms_f32() 237 static float32x4_t vfmsq_f32(float32x4_t a, float32x4_t b, float32x4_t c) in vfmsq_f32()
|
/btstack/3rd-party/lwip/core/src/netif/ppp/ |
H A D | pppos.c | 94 #define ESCAPE_P(accm, c) ((accm)[(c) >> 3] & 1 << (c & 0x07)) argument 134 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff]) argument 149 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ ppp_get_fcs(((fcs) ^ (c)) & 0xff)) argument 823 pppos_output_append(pppos_pcb *pppos, err_t err, struct pbuf *nb, u8_t c, u8_t accm, u16_t *fcs) in pppos_output_append()
|
H A D | utils.c | 133 #define OUTCHAR(c) (buflen > 0? (--buflen, *buf++ = (c)): 0) argument 136 int c, i, n; in ppp_vslprintf() local 573 int c; in ppp_print_string() local
|
/btstack/port/esp32/components/btstack/ |
H A D | btstack_stdio_esp32.c | 213 void btstack_stdin_setup(void (*handler)(char c)){ in btstack_stdin_setup() 224 void btstack_stdin_setup(void (*handler)(char c)){ in btstack_stdin_setup()
|
/btstack/3rd-party/bluedroid/encoder/srce/ |
H A D | sbc_dct.c | 51 #define SBC_IDCT_MULT(a,b,c) SBC_MULT_32_16_SIMPLIFIED(a,b,c) argument 60 #define SBC_IDCT_MULT(a,b,c) SBC_MULT_32_32(a,b,c) argument
|
/btstack/3rd-party/lwip/core/src/apps/altcp_tls/ |
H A D | altcp_tls_mbedtls_mem.c | 87 size_t c; member 103 tls_malloc(size_t c, size_t len) in tls_malloc()
|
/btstack/3rd-party/md5/ |
H A D | md5.c | 60 #define STEP(f, a, b, c, d, x, t, s) \ argument 103 MD5_u32plus a, b, c, d; in body() local
|