/AliOS-Things-master/components/minilibc/libc/ |
A D | printf.c | 173 static inline void _out_buffer(char character, void* buffer, size_t idx, size_t maxlen) in _out_buffer() 182 static inline void _out_null(char character, void* buffer, size_t idx, size_t maxlen) in _out_null() 189 static inline void _out_char(char character, void* buffer, size_t idx, size_t maxlen) in _out_char() 199 static inline void _out_fct(char character, void* buffer, size_t idx, size_t maxlen) in _out_fct() 239 static size_t _out_rev(out_fct_type out, char* buffer, size_t idx, size_t maxlen, const char* buf, … in _out_rev() 267 static size_t _ntoa_format(out_fct_type out, char* buffer, size_t idx, size_t maxlen, char* buf, si… in _ntoa_format() 321 static size_t _ntoa_long(out_fct_type out, char* buffer, size_t idx, size_t maxlen, unsigned long v… in _ntoa_long() 346 static size_t _ntoa_long_long(out_fct_type out, char* buffer, size_t idx, size_t maxlen, unsigned l… in _ntoa_long_long() 379 static size_t _ftoa(out_fct_type out, char* buffer, size_t idx, size_t maxlen, double value, unsign… in _ftoa() 507 static size_t _etoa(out_fct_type out, char* buffer, size_t idx, size_t maxlen, double value, unsign… in _etoa() [all …]
|
/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_string.c | 439 SDL_wcslcpy(SDL_OUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen) in SDL_wcslcpy() 455 SDL_wcslcat(SDL_INOUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen) in SDL_wcslcat() 514 SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen) in SDL_wcsncmp() 530 SDL_strlcpy(SDL_OUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen) in SDL_strlcpy() 596 SDL_strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen) in SDL_strlcat() 994 SDL_strncmp(const char *str1, const char *str2, size_t maxlen) in SDL_strncmp() 1038 SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen) in SDL_strncasecmp() 1458 SDL_IntPrecisionAdjust(char *num, size_t maxlen, SDL_FormatInfo *info) in SDL_IntPrecisionAdjust() 1495 SDL_PrintLong(char *text, size_t maxlen, SDL_FormatInfo *info, long value) in SDL_PrintLong() 1519 SDL_PrintLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Sint64 value) in SDL_PrintLongLong() [all …]
|
/AliOS-Things-master/components/SDL2/src/hidapi/linux/ |
A D | hid.cpp | 268 …HID_API_EXPORT_CALL hid_get_manufacturer_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_manufacturer_string() 281 int HID_API_EXPORT_CALL hid_get_product_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_product_string() 294 …ID_API_EXPORT_CALL hid_get_serial_number_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_serial_number_string() 307 …T_CALL hid_get_indexed_string(hid_device *device, int string_index, wchar_t *string, size_t maxlen) in hid_get_indexed_string()
|
A D | hid.c | 331 …c int get_device_string(hid_device *dev, enum device_string_id key, wchar_t *string, size_t maxlen) in get_device_string() 868 int HID_API_EXPORT_CALL hid_get_manufacturer_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_manufacturer_string() 873 int HID_API_EXPORT_CALL hid_get_product_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_product_string() 878 …t HID_API_EXPORT_CALL hid_get_serial_number_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_serial_number_string() 883 …PORT_CALL hid_get_indexed_string(hid_device *dev, int string_index, wchar_t *string, size_t maxlen) in hid_get_indexed_string()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | checkkeys.c | 39 print_string(char **text, size_t *maxlen, const char *fmt, ...) in print_string() 58 print_modifiers(char **text, size_t *maxlen) in print_modifiers()
|
/AliOS-Things-master/components/SDL2/src/audio/paudio/ |
A D | SDL_paudio.c | 73 OpenUserDefinedDevice(char *path, int maxlen, int flags) in OpenUserDefinedDevice() 94 OpenAudioPath(char *path, int maxlen, int flags, int classic) in OpenAudioPath()
|
/AliOS-Things-master/components/SDL2/src/ |
A D | SDL_error.c | 106 SDL_GetErrorMsg(char *errstr, int maxlen) in SDL_GetErrorMsg()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objdeque.c | 55 mp_int_t maxlen = mp_obj_get_int(args[1]); in deque_make_new() local
|
/AliOS-Things-master/components/SDL2/src/hidapi/windows/ |
A D | hid.c | 933 …PORT_CALL HID_API_CALL hid_get_manufacturer_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_manufacturer_string() 946 …PI_EXPORT_CALL HID_API_CALL hid_get_product_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_product_string() 959 …ORT_CALL HID_API_CALL hid_get_serial_number_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_serial_number_string() 972 …_API_CALL hid_get_indexed_string(hid_device *dev, int string_index, wchar_t *string, size_t maxlen) in hid_get_indexed_string()
|
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_common.c | 46 static void SDL_snprintfcat(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRI… in SDL_snprintfcat() 599 SDLTest_PrintRendererFlag(char *text, size_t maxlen, Uint32 flag) in SDLTest_PrintRendererFlag() 621 SDLTest_PrintPixelFormat(char *text, size_t maxlen, Uint32 format) in SDLTest_PrintPixelFormat()
|
/AliOS-Things-master/components/SDL2/src/hidapi/ |
A D | SDL_hidapi.c | 720 …HID_API_EXPORT_CALL hid_get_manufacturer_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_manufacturer_string() 726 int HID_API_EXPORT_CALL hid_get_product_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_product_string() 732 …ID_API_EXPORT_CALL hid_get_serial_number_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_serial_number_string() 738 …T_CALL hid_get_indexed_string(hid_device *device, int string_index, wchar_t *string, size_t maxlen) in hid_get_indexed_string()
|
/AliOS-Things-master/components/SDL2/src/hidapi/libusb/ |
A D | hid.c | 1372 int HID_API_EXPORT_CALL hid_get_manufacturer_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_manufacturer_string() 1377 int HID_API_EXPORT_CALL hid_get_product_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_product_string() 1382 …t HID_API_EXPORT_CALL hid_get_serial_number_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_serial_number_string() 1387 …PORT_CALL hid_get_indexed_string(hid_device *dev, int string_index, wchar_t *string, size_t maxlen) in hid_get_indexed_string()
|
/AliOS-Things-master/components/SDL2/src/hidapi/mac/ |
A D | hid.c | 1074 int HID_API_EXPORT_CALL hid_get_manufacturer_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_manufacturer_string() 1079 int HID_API_EXPORT_CALL hid_get_product_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_product_string() 1084 …t HID_API_EXPORT_CALL hid_get_serial_number_string(hid_device *dev, wchar_t *string, size_t maxlen) in hid_get_serial_number_string() 1089 …PORT_CALL hid_get_indexed_string(hid_device *dev, int string_index, wchar_t *string, size_t maxlen) in hid_get_indexed_string()
|
/AliOS-Things-master/components/SDL2/src/hidapi/android/ |
A D | hid.cpp | 1158 …HID_API_EXPORT_CALL hid_get_manufacturer_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_manufacturer_string() 1172 int HID_API_EXPORT_CALL hid_get_product_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_product_string() 1186 …ID_API_EXPORT_CALL hid_get_serial_number_string(hid_device *device, wchar_t *string, size_t maxlen) in hid_get_serial_number_string() 1200 …T_CALL hid_get_indexed_string(hid_device *device, int string_index, wchar_t *string, size_t maxlen) in hid_get_indexed_string()
|
/AliOS-Things-master/components/amp/components/at/src/ |
A D | at_internal.h | 36 uint32_t maxlen; member
|
/AliOS-Things-master/components/linkkit/external/nghttp2/ |
A D | nghttp2_hd.c | 1689 size_t prefix, size_t maxlen) in hd_inflate_read_len()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | run-test262.c | 1134 int len, maxlen; in longest_match() local
|