| /AliOS-Things-master/components/linkkit/include/linkkit/infra/ |
| A D | infra_cjson.h | 114 lite_cjson_item_t *lite_cjson_create_intArray(const int *numbers, int count); 115 lite_cjson_item_t *lite_cjson_create_floatArray(const float *numbers, 117 lite_cjson_item_t *lite_cjson_create_doubleArray(const double *numbers,
|
| /AliOS-Things-master/components/cjson/include/ |
| A D | cJSON.h | 212 CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count); 213 CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count); 214 CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count);
|
| /AliOS-Things-master/components/SDL2/acinclude/ |
| A D | ltversion.m4 | 1 # ltversion.m4 -- version numbers -*- Autoconf -*-
|
| /AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/m4/ |
| A D | ltversion.m4 | 1 # ltversion.m4 -- version numbers -*- Autoconf -*-
|
| /AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/ |
| A D | ltversion.m4 | 1 # ltversion.m4 -- version numbers -*- Autoconf -*-
|
| /AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/m4/ |
| A D | ltversion.m4 | 1 # ltversion.m4 -- version numbers -*- Autoconf -*-
|
| /AliOS-Things-master/components/SDL2/src/image/acinclude/ |
| A D | ltversion.m4 | 2 # ltversion.m4 -- version numbers -*- Autoconf -*-
|
| /AliOS-Things-master/components/linkkit/infra/ |
| A D | infra_cjson.c | 1804 lite_cjson_item_t *lite_cjson_create_intArray(const int *numbers, int count) in lite_cjson_create_intArray() argument 1811 if ((count < 0) || (numbers == NULL)) { in lite_cjson_create_intArray() 1817 n = lite_cjson_create_number(numbers[i]); in lite_cjson_create_intArray() 1833 lite_cjson_item_t *lite_cjson_create_floatArray(const float *numbers, int count) in lite_cjson_create_floatArray() argument 1840 if ((count < 0) || (numbers == NULL)) { in lite_cjson_create_floatArray() 1847 n = lite_cjson_create_number((double)numbers[i]); in lite_cjson_create_floatArray() 1863 lite_cjson_item_t *lite_cjson_create_doubleArray(const double *numbers, in lite_cjson_create_doubleArray() argument 1871 if ((count < 0) || (numbers == NULL)) { in lite_cjson_create_doubleArray() 1878 n = lite_cjson_create_number(numbers[i]); in lite_cjson_create_doubleArray()
|
| /AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/ |
| A D | jsbignum.texi | 32 @item Arbitrarily large floating point numbers (@code{BigFloat}) in base 2 using the IEEE 754 seman… 34 @item Arbitrarily large floating point numbers (@code{BigDecimal}) in base 10 based on the proposal… 122 @code{BigFloat} type represents floating point numbers in base 2 177 BigFloat literals are floating point numbers with a trailing @code{l} 282 For floating point numbers: 319 @item the subnormal flag (if true, subnormal floating point numbers can 430 @code{BigDecimal} type represents floating point numbers in base 434 The @code{BigDecimal} floating point numbers are always normalized and 483 BigDecimal literals are decimal floating point numbers with a trailing 557 designed so that arbitrarily large integers and floating point numbers [all …]
|
| A D | quickjs.texi | 28 numbers (BigDecimal), big binary floating point numbers (BigFloat), 195 arbitrarily large integer and floating point numbers, fractions, 196 complex numbers, polynomials and matrices. The source code is in 296 @item @code{BigDecimal} support: arbitrary large floating point numbers in base 10. 298 @item @code{BigFloat} support: arbitrary large floating point numbers in base 2. 484 @item leading plus in numbers 485 @item octal (@code{0o} prefix) and hexadecimal (@code{0x} prefix) numbers 692 POSIX signal numbers. 1020 to store 64-bit floating point numbers. The representation is
|
| /AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/doc/ |
| A D | README | 23 doc/template.html --coderay-css style --coderay-line-numbers ' ' \
|
| /AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
| A D | TODO | 14 - use more generic method for line numbers in resolve_variables and resolve_labels 35 - add implicit numeric strings for Uint32 numbers?
|
| A D | README.md | 34 floating point numbers (BigDecimal), big binary floating point numbers
|
| /AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
| A D | HOWTO-RELEASE | 46 LIBTIFF_REVISION, and LIBTIFF_AGE). These numbers have nothing to 47 do with the libtiff release version numbers.
|
| /AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/conftest/ |
| A D | s_write.dfa | 19 # simplified API doesn't need fixed or floating point numbers. It is necessary
|
| A D | simple.dfa | 20 # simplified API doesn't need fixed or floating point numbers. It is necessary
|
| A D | s_read.dfa | 21 # simplified API doesn't need fixed or floating point numbers. It is necessary
|
| /AliOS-Things-master/components/cjson/src/ |
| A D | cJSON.c | 2406 CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) in cJSON_CreateIntArray() argument 2413 if ((count < 0) || (numbers == NULL)) in cJSON_CreateIntArray() 2421 n = cJSON_CreateNumber(numbers[i]); in cJSON_CreateIntArray() 2441 CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count) in cJSON_CreateFloatArray() argument 2448 if ((count < 0) || (numbers == NULL)) in cJSON_CreateFloatArray() 2457 n = cJSON_CreateNumber((double)numbers[i]); in cJSON_CreateFloatArray() 2477 CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count) in cJSON_CreateDoubleArray() argument 2484 if ((count < 0) || (numbers == NULL)) in cJSON_CreateDoubleArray() 2493 n = cJSON_CreateNumber(numbers[i]); in cJSON_CreateDoubleArray()
|
| /AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
| A D | wizard.txt | 42 appear between numbers. Also, comments can be included: a comment starts 85 "-qslots 0,1,2". If -qslots gives fewer table numbers than there are color 154 between numbers and around punctuation. Also, comments can be included: a
|
| /AliOS-Things-master/components/freetype/src/gxvalid/ |
| A D | README | 176 - Number Spacing (Monospaced-numbers/Proportional-numbers) 293 include feature numbers which are incompatible with the predefined
|
| /AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/masmx64/ |
| A D | gvmat64.asm | 125 ;;; Offsets for fields in the deflate_state structure. These numbers
|
| /AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/masmx86/ |
| A D | match686.asm | 140 ;;; Offsets for fields in the deflate_state structure. These numbers
|
| /AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/ |
| A D | rfc1950.txt | 186 significant bit, and since we write numbers with the most- 197 multi-byte numbers in the format described here are stored with
|
| /AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
| A D | README | 4 See the note about version numbers near the top of png.h.
|
| /AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
| A D | tif_config.h.in | 383 /* Enable large inode numbers on Mac OS X 10.5. */
|