/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | strproc.h | 19 #define in_range(c, lo, up) ((u8)c >= lo && (u8)c <= up) argument 20 #define isprint(c) in_range(c, 0x20, 0x7f) argument 21 #define isdigit(c) in_range(c, '0', '9') argument 22 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument 24 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument 26 #define isupper(c) (((c)>='A')&&((c)<='Z')) argument 27 #define islower(c) (((c)>='a')&&((c)<='z')) argument 28 #define isalpha(c) (isupper(c) || islower(c)) argument 73 static inline int isodigit(const char c) in isodigit()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | unicode.c | 119 bool unichar_isspace(unichar c) { in unichar_isspace() 123 bool unichar_isalpha(unichar c) { in unichar_isalpha() 133 bool unichar_isdigit(unichar c) { in unichar_isdigit() 137 bool unichar_isxdigit(unichar c) { in unichar_isxdigit() 141 bool unichar_isident(unichar c) { in unichar_isident() 145 bool unichar_isalnum(unichar c) { in unichar_isalnum() 149 bool unichar_isupper(unichar c) { in unichar_isupper() 153 bool unichar_islower(unichar c) { in unichar_islower() 157 unichar unichar_tolower(unichar c) { in unichar_tolower() 164 unichar unichar_toupper(unichar c) { in unichar_toupper() [all …]
|
/AliOS-Things-master/components/mqtt/MQTTClient-C/ |
A D | MQTTClient.c | 29 static int getNextPacketId(MQTTClient *c) { in getNextPacketId() 34 static int sendPacket(MQTTClient* c, int length, Timer* timer) in sendPacket() 111 static int readPacket(MQTTClient* c, Timer* timer) in readPacket() 212 int keepalive(MQTTClient* c) in keepalive() 239 void MQTTCleanSession(MQTTClient* c) in MQTTCleanSession() 248 void MQTTCloseSession(MQTTClient* c) in MQTTCloseSession() 257 int cycle(MQTTClient* c, Timer* timer) in cycle() 341 int MQTTYield(MQTTClient* c, int timeout_ms) in MQTTYield() 369 MQTTClient* c = (MQTTClient*)parm; in MQTTRun() local 395 int waitfor(MQTTClient* c, int packet_type, Timer* timer) in waitfor() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/hal/hal_test/uart/ |
A D | ymodem.h | 55 #define IS_AF(c) ((c >= 'A') && (c <= 'F')) argument 56 #define IS_af(c) ((c >= 'a') && (c <= 'f')) argument 57 #define IS_09(c) ((c >= '0') && (c <= '9')) argument 58 #define ISVALIDHEX(c) IS_AF(c) || IS_af(c) || IS_09(c) argument 59 #define ISVALIDDEC(c) IS_09(c) argument 60 #define CONVERTDEC(c) (c - '0') argument 62 #define CONVERTHEX_alpha(c) (IS_AF(c) ? (c - 'A'+10) : (c - 'a'+10)) argument 63 #define CONVERTHEX(c) (IS_09(c) ? (c - '0') : CONVERTHEX_alpha(c)) argument
|
/AliOS-Things-master/components/netmgr/netdev/src/ |
A D | netdev_ipaddr.c | 9 #define in_range(c, lo, up) ((uint8_t)c >= lo && (uint8_t)c <= up) argument 10 #define isprint(c) in_range(c, 0x20, 0x7f) argument 11 #define isdigit(c) in_range(c, '0', '9') argument 12 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument 13 #define islower(c) in_range(c, 'a', 'z') argument 14 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument 33 char c; in netdev_ip4addr_aton() local
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv4/ |
A D | ip4_addr.c | 117 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) argument 118 #define isprint(c) in_range(c, 0x20, 0x7f) argument 119 #define isdigit(c) in_range(c, '0', '9') argument 120 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument 121 #define islower(c) in_range(c, 'a', 'z') argument 122 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument 159 char c; in ip4addr_aton() local
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv6/ |
A D | ip6_addr.c | 54 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) argument 55 #define isprint(c) in_range(c, 0x20, 0x7f) argument 56 #define isdigit(c) in_range(c, '0', '9') argument 57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument 58 #define islower(c) in_range(c, 'a', 'z') argument 59 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/ |
A D | softmax.h | 44 for (int c = 0; c < depth; ++c) { in Softmax() local 50 for (int c = 0; c < depth; ++c) { in Softmax() local 58 for (int c = 0; c < depth; ++c) { in Softmax() local 94 for (int c = 0; c < depth; ++c) { in Softmax() local 99 for (int c = 0; c < depth; ++c) { in Softmax() local 117 for (int c = 0; c < depth; ++c) { in Softmax() local 150 int16_t max_in_row, int i, int c) { in SoftMaxCalculateExp() 179 for (int c = 0; c < depth; ++c) { in SoftmaxInt16() local 189 for (int c = 0; c < depth; ++c) { in SoftmaxInt16() local 215 for (int c = 0; c < depth; ++c) { in SoftmaxInt16() local
|
A D | l2normalization.h | 41 for (int c = 0; c < depth; ++c) { variable 47 for (int c = 0; c < depth; ++c) { variable 67 for (int c = 0; c < depth; c++) { in L2Normalization() local 75 for (int c = 0; c < depth; c++) { in L2Normalization() local
|
/AliOS-Things-master/components/littlevgl/src/lv_misc/ |
A D | lv_circ.c | 43 void lv_circ_init(lv_point_t * c, lv_coord_t * tmp, lv_coord_t radius) in lv_circ_init() 55 bool lv_circ_cont(lv_point_t * c) in lv_circ_cont() 65 void lv_circ_next(lv_point_t * c, lv_coord_t * tmp) in lv_circ_next()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/hal/ |
A D | reg_i2sip.h | 11 #define I2SIP_CHAN_REG(c, r) (c * I2SIP_CHAN_REG_SIZE + r) argument 67 #define I2SIP_LEFT_RX_BUFF_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x20) argument 70 #define I2SIP_LEFT_TX_BUFF_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x20) argument 73 #define I2SIP_RIGHT_RX_BUFF_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x24) argument 80 #define I2SIP_RX_ENABLE_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x28) argument 85 #define I2SIP_TX_ENABLE_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x2c) argument 90 #define I2SIP_RX_CFG_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x30) argument 101 #define I2SIP_TX_CFG_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x34) argument 121 #define I2SIP_INT_STATUS_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x38) argument 132 #define I2SIP_INT_MASK_REG_OFFSET(c) I2SIP_CHAN_REG(c, 0x3c) argument [all …]
|
/AliOS-Things-master/components/linkkit/mqtt/impl/ |
A D | iotx_mqtt_client.c | 290 static int _reset_send_buffer(iotx_mc_client_t *c) in _reset_send_buffer() 310 static int _reset_recv_buffer(iotx_mc_client_t *c) in _reset_recv_buffer() 330 static int _alloc_send_buffer(iotx_mc_client_t *c, int len) in _alloc_send_buffer() 363 static int _alloc_recv_buffer(iotx_mc_client_t *c, int len) in _alloc_recv_buffer() 686 static int iotx_mc_wait_CONNACK(iotx_mc_client_t *c) in iotx_mc_wait_CONNACK() 1032 static int iotx_mc_handle_recv_PUBACK(iotx_mc_client_t *c) in iotx_mc_handle_recv_PUBACK() 2652 static int MQTTDisconnect(iotx_mc_client_t *c) in MQTTDisconnect() 2801 int wrapper_mqtt_release(void **c) in wrapper_mqtt_release() 2922 iotx_mc_client_t *c; in wrapper_mqtt_subscribe() local 3131 iotx_mc_client_t *c = (iotx_mc_client_t *)client; in wrapper_mqtt_unsubscribe() local [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/minizip/ |
A D | crypt.h | 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) argument 48 static int update_keys(unsigned long* pkeys,const z_crc_t* pcrc_32_tab,int c) in update_keys() 76 #define zdecode(pkeys,pcrc_32_tab,c) \ argument 79 #define zencode(pkeys,pcrc_32_tab,c,t) \ argument 99 int c; /* random byte */ in crypthead() local
|
/AliOS-Things-master/components/py_engine/external/unzip/internal/ |
A D | crypt.h | 30 #define CRC32(c, b) ((*(pcrc_32_tab + (((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) argument 48 static int update_keys(unsigned long* pkeys, const unsigned long* pcrc_32_tab, int c) in update_keys() 75 #define zdecode(pkeys, pcrc_32_tab, c) \ argument 78 #define zencode(pkeys, pcrc_32_tab, c, t) \ argument 99 int c; /* random byte */ local
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | seq_unpack.py | 20 c = 3 variable 21 a, b, c = b, c, a variable 34 a, b, c = range(3) variable
|
A D | class_store.py | 6 c = C() variable 14 c = C() variable
|
A D | fun_kwonlydef.py | 16 def f3(a, *, b=2, c): argument 24 def f4(*, a=1, b, c=3, d, e=5, f): argument 32 def f5(a, b=4, *c, d=8):
|
A D | fun_kwonly.py | 17 def f(a, *, b, c): argument 47 def f(*a, b, c): argument 54 def f(a, *b, c): argument
|
/AliOS-Things-master/components/py_engine/external/amp_boot/ |
A D | amp_boot_uart.c | 10 void pyamp_boot_uart_send_byte(unsigned char c) in pyamp_boot_uart_send_byte() 24 unsigned char pyamp_boot_uart_recv_byte(unsigned char *c) in pyamp_boot_uart_recv_byte() 38 char c = 0; in pyamp_boot_uart_recv_line() local
|
A D | amp_boot.c | 85 unsigned char c = 0; in pyamp_boot_flash_kv() local 117 unsigned char c = 0; in pyamp_boot_cli_menu() local 179 unsigned char c = 0; in pyamp_boot_cli_receive_path() local 272 unsigned char c = 0; in pyamp_boot_cli_in() local 345 unsigned char c = 0; in pyamp_boot_main() local
|
/AliOS-Things-master/components/py_engine/engine/shared/runtime/ |
A D | pyexec.c | 203 int c = mp_hal_stdin_rx_chr(); in mp_reader_stdin_readbyte() local 234 int c = mp_hal_stdin_rx_chr(); in mp_reader_stdin_close() local 258 STATIC int do_reader_stdin(int c) { in do_reader_stdin() 305 STATIC int pyexec_raw_repl_process_char(int c) { in pyexec_raw_repl_process_char() 359 STATIC int pyexec_friendly_repl_process_char(int c) { in pyexec_friendly_repl_process_char() 472 int pyexec_event_repl_process_char(int c) { in pyexec_event_repl_process_char() 497 int c = mp_hal_stdin_rx_chr(); in pyexec_raw_repl() local 623 char c = mp_hal_stdin_rx_chr(); in pyexec_friendly_repl() local
|
/AliOS-Things-master/components/amp/services/amp_boot/ |
A D | amp_boot_uart.c | 14 void amp_boot_uart_send_byte(unsigned char c) 36 unsigned char amp_boot_uart_recv_byte(unsigned char *c) 56 char c = 0; local
|
/AliOS-Things-master/components/freetype/src/gzip/ |
A D | infblock.c | 70 uLongf *c ) in inflate_blocks_reset() 90 check_func c, in inflate_blocks_new() 267 uInt i, j, c; in inflate_blocks() local 310 inflate_codes_statef *c; in inflate_blocks() local
|
/AliOS-Things-master/hardware/chip/rtl872xd/2nd_boot/ |
A D | rec_uart.c | 37 static int uart0_recv_byte(unsigned char *c) in uart0_recv_byte() 59 unsigned char uart_recv_byte(unsigned char *c) in uart_recv_byte() 71 unsigned char rec_uart_recv_byte(unsigned char *c) in rec_uart_recv_byte()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/multimedia/speech/inc/ |
A D | ae_macros.h | 4 #define CONSTRUCT_FUNC_NAME_A(p, c, m) p ## _ ## c ## _ ## m argument 5 #define CONSTRUCT_FUNC_NAME(p, c, m) CONSTRUCT_FUNC_NAME_A(p, c, m) argument
|