Home
last modified time | relevance | path

Searched refs:comma (Results 1 – 25 of 25) sorted by relevance

/AliOS-Things-master/components/freetype/src/tools/
A Dglnames.py4946 comma = ""
4950 line += comma
4953 comma = ","
5196 comma = ""
5199 line += comma
5201 comma = ","
5205 comma = ",\n "
5218 comma = " "
5222 line += comma
5224 comma = ","
[all …]
A Dcordic.py8 comma = "" variable
23 sys.stdout.write( comma + repr( int(angle2) ) )
24 comma = ", " variable
/AliOS-Things-master/components/py_engine/engine/py/
A Dobjint.h47 size_t mp_int_format_size(size_t num_bits, int base, const char *prefix, char comma);
53 int base, const char *prefix, char base_char, char comma);
55 int base, const char *prefix, char base_char, char comma);
A Dobjint.c209 size_t mp_int_format_size(size_t num_bits, int base, const char *prefix, char comma) { in mp_int_format_size() argument
212 size_t num_commas = comma ? num_digits / 3 : 0; in mp_int_format_size()
225 int base, const char *prefix, char base_char, char comma) { in mp_obj_int_formatted() argument
243 …return mp_obj_int_formatted_impl(buf, buf_size, fmt_size, self_in, base, prefix, base_char, comma); in mp_obj_int_formatted()
254 size_t needed_size = mp_int_format_size(sizeof(fmt_int_t) * 8, base, prefix, comma); in mp_obj_int_formatted()
278 if (comma && num != 0 && b > str && (last_comma - b) == 3) { in mp_obj_int_formatted()
279 *(--b) = comma; in mp_obj_int_formatted()
A Dmpprint.c251 char comma = '\0'; in mp_print_mp_int() local
253 comma = ','; in mp_print_mp_int()
272 x, base, NULL, base_char, comma); in mp_print_mp_int()
279 x, base, prefix, base_char, comma); in mp_print_mp_int()
A Dobjint_mpz.c94 int base, const char *prefix, char base_char, char comma) { in mp_obj_int_formatted_impl() argument
98 size_t needed_size = mp_int_format_size(mpz_max_num_bits(&self->mpz), base, prefix, comma); in mp_obj_int_formatted_impl()
105 *fmt_size = mpz_as_str_inpl(&self->mpz, base, prefix, base_char, comma, str); in mp_obj_int_formatted_impl()
A Dmpz.h151 …inpl(const mpz_t *z, unsigned int base, const char *prefix, char base_char, char comma, char *str);
A Dmpz.c1660 …npl(const mpz_t *i, unsigned int base, const char *prefix, char base_char, char comma, char *str) { in mpz_as_str_inpl() argument
1711 if (comma && (s - last_comma) == 3) { in mpz_as_str_inpl()
1712 *s++ = comma; in mpz_as_str_inpl()
/AliOS-Things-master/hardware/chip/haas1000/drivers/scripts/
A Dbuild.mk311 echo addmod $(subst $(space),$(comma),$(strip $(filter-out %.a,$(1)))) && \
403 …$(LD) -Wl$(comma)$(subst $(space),$(comma),$(strip $(ld_flags) --partial)) -nostdlib $(LINK_CFLAGS…
407 …$(LD) -Wl$(comma)$(subst $(space),$(comma),$(strip $(ld_flags) -r)) -nostdlib -nostartfiles $(LINK…
467 …cmd_link_multi-y = $(LD) -Wl,$(subst $(space),$(comma),$(strip $(ld_flags) --partial)) -nostdlib $…
469 …cmd_link_multi-y = $(LD) -Wl,$(subst $(space),$(comma),$(strip $(ld_flags) -r --whole-archive)) -n…
A Dinclude.mk22 comma := ,
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/
A Dipv6cp.c341 char *comma, *arg, c; local
350 if ((comma = strchr(arg, ',')) == NULL)
351 comma = arg + strlen(arg);
356 if (comma != arg) {
357 c = *comma;
358 *comma = '\0';
370 *comma = c;
376 if (*comma != 0 && *++comma != '\0') {
377 if (inet_pton(AF_INET6, comma, &addr) == 0 || !VALIDID(addr)) {
378 option_error("Illegal interface identifier (remote): %s", comma);
/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_reader.cpp482 Token comma; in readObject() local
483 if (!readToken(comma) || in readObject()
484 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
485 comma.type_ != tokenComment)) { in readObject()
491 finalizeTokenOk = readToken(comma); in readObject()
492 if (comma.type_ == tokenObjectEnd) in readObject()
1487 Token comma; in readObject() local
1488 if (!readToken(comma) || in readObject()
1489 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
1490 comma.type_ != tokenComment)) { in readObject()
[all …]
/AliOS-Things-master/hardware/chip/haas1000/drivers/
A DMakefile587 LST_SECTION_OPTS += $(foreach m,$(subst $(comma),$(space),$(LST_ONLY_SECTION)),--only=$m )
589 LST_SECTION_OPTS += $(foreach m,$(subst $(comma),$(space),$(LST_ONLY_SECTION)),-j $m )
595 LST_SECTION_OPTS += $(foreach m,$(subst $(comma),$(space),$(LST_RM_SECTION)),--ignore_section=$m )
597 LST_SECTION_OPTS += $(foreach m,$(subst $(comma),$(space),$(LST_RM_SECTION)),-R $m )
845 -Wl,$(subst $(space),$(comma),$(strip \
860 -Wl,$(subst $(space),$(comma),$(strip \
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/
A Dtiffcp.c93 static char comma = ','; /* (default) comma separator character */ variable
105 if (**imageSpec == comma) { /* if not @comma, we've done all images */ in nextSrcImage()
111 if (**imageSpec == comma) { in nextSrcImage()
117 comma, TIFFFileName (tif)); in nextSrcImage()
123 TIFFFileName(tif), comma, (int) nextImage); in nextSrcImage()
138 *imageSpec = strchr (fn, comma); in openSrcImage()
145 **imageSpec = comma; /* replace the comma */ in openSrcImage()
181 comma = optarg[1]; in main()
/AliOS-Things-master/components/SDL2/src/locale/macosx/
A DSDL_syslocale.m67 buf[0] = ','; // add a comma between entries.
/AliOS-Things-master/components/oss/src/external/json/
A Djsoncpp.cpp724 Token comma; in readObject() local
725 if (!readToken(comma) || in readObject()
726 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
727 comma.type_ != tokenComment)) { in readObject()
733 finalizeTokenOk = readToken(comma); in readObject()
734 if (comma.type_ == tokenObjectEnd) in readObject()
1732 Token comma; in readObject() local
1733 if (!readToken(comma) || in readObject()
1734 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
1735 comma.type_ != tokenComment)) { in readObject()
[all …]
/AliOS-Things-master/components/freetype/src/autofit/
A Dafblue.dat46 // brace the last (ignoring whitespace also). The script appends a comma
/AliOS-Things-master/components/SDL2/src/joystick/
A DSDL_gamecontroller.c1215 char *buf, *line, *line_end, *tmp, *comma, line_platform[64]; in SDL_GameControllerAddMappingsFromRW() local
1258 comma = SDL_strchr(tmp, ','); in SDL_GameControllerAddMappingsFromRW()
1259 if (comma != NULL) { in SDL_GameControllerAddMappingsFromRW()
1260 platform_len = comma - tmp + 1; in SDL_GameControllerAddMappingsFromRW()
/AliOS-Things-master/solutions/tflite_micro_speech_demo/micro_speech/train/
A Dtrain_micro_speech_model.ipynb44 "# A comma-delimited list of the words you want to train for.\n",
50 "# The number of steps and learning rates can be specified as comma-separated\n",
/AliOS-Things-master/components/py_engine/engine/tools/
A Duncrustify.cfg394 # Add or remove space between an open parenthesis and comma,
1200 # Whether to indent a comma when inside a parenthesis.
1650 # Add or remove newline before first element, after comma, and after last
2223 # The position of the comma in wrapped expressions.
2226 # The position of the comma in enum entries.
2229 # The position of the comma in the base class list if there is more than one
2233 # The position of the comma in the constructor initialization list.
2838 # Add or remove the comma after the last value of an enumeration.
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/
A DREADME281 -metadata <string> ..... comma separated list of metadata to
502 -metadata <string> ..... comma separated list of metadata to
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/
A Dquickjs.texi481 @item trailing comma in array and object definitions
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/
A Dpnglibconf.dfa45 # part of the setting!) A comma at the end of an option line causes a
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A Dlibpng-manual.txt1845 right overall transformation. When two transforms are separated by a comma
5379 We put a space after each comma and after each semicolon
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dquickjs.c25306 BOOL comma = FALSE; in js_parse_expr2() local
25310 if (comma) { in js_parse_expr2()
25320 comma = TRUE; in js_parse_expr2()

Completed in 145 milliseconds