/AliOS-Things-master/components/freetype/src/base/ |
A D | ftgloadr.c | 90 FT_GlyphLoad base = &loader->base; in FT_GlyphLoader_Rewind() local 145 FT_Outline* base = &loader->base.outline; in FT_GlyphLoader_Adjust_Points() local 149 current->points = base->points + base->n_points; in FT_GlyphLoader_Adjust_Points() 150 current->tags = base->tags + base->n_points; in FT_GlyphLoader_Adjust_Points() 151 current->contours = base->contours + base->n_contours; in FT_GlyphLoader_Adjust_Points() 175 loader->base.extra_points2 = loader->base.extra_points + in FT_GlyphLoader_CreateExtra() 188 FT_GlyphLoad base = &loader->base; in FT_GlyphLoader_Adjust_Subglyphs() local 207 FT_Outline* base = &loader->base.outline; in FT_GlyphLoader_CheckPoints() local 287 FT_GlyphLoad base = &loader->base; in FT_GlyphLoader_CheckSubGlyphs() local 329 FT_GlyphLoad base = &loader->base; in FT_GlyphLoader_Add() local [all …]
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | parsenumbase.c | 39 if ((*base == 0 || *base == 16) && c == '0') { in mp_parse_num_base() 42 *base = 16; in mp_parse_num_base() 43 } else if (*base == 0 && (c | 32) == 'o') { in mp_parse_num_base() 44 *base = 8; in mp_parse_num_base() 46 *base = 2; in mp_parse_num_base() 48 if (*base == 0) { in mp_parse_num_base() 49 *base = 10; in mp_parse_num_base() 53 } else if (*base == 8 && c == '0') { in mp_parse_num_base() 58 } else if (*base == 2 && c == '0') { in mp_parse_num_base() 66 if (*base == 0) { in mp_parse_num_base() [all …]
|
A D | objnamedtuple.c | 53 dictObj->base.type = &mp_type_ordereddict; in namedtuple_asdict() 113 tuple->base.type = type_in; in namedtuple_make_new() 146 memset(&o->base, 0, sizeof(o->base)); in mp_obj_new_namedtuple_base() 156 o->base.base.type = &mp_type_type; in mp_obj_new_namedtuple_type() 158 o->base.name = name; in mp_obj_new_namedtuple_type() 159 o->base.print = namedtuple_print; in mp_obj_new_namedtuple_type() 160 o->base.make_new = namedtuple_make_new; in mp_obj_new_namedtuple_type() 163 o->base.attr = namedtuple_attr; in mp_obj_new_namedtuple_type() 164 o->base.subscr = mp_obj_tuple_subscr; in mp_obj_new_namedtuple_type() 165 o->base.getiter = mp_obj_tuple_getiter; in mp_obj_new_namedtuple_type() [all …]
|
A D | asmxtensa.c | 47 if (as->base.pass == MP_ASM_PASS_EMIT) { in asm_xtensa_end_pass() 48 uint8_t *d = as->base.code_base; in asm_xtensa_end_pass() 121 assert(label < as->base.max_num_labels); in get_label_dest() 122 return as->base.label_offsets[label]; in get_label_dest() 144 int32_t rel = dest - as->base.code_offset - 4; in asm_xtensa_j_label() 151 int32_t rel = dest - as->base.code_offset - 4; in asm_xtensa_bccz_reg_label() 160 int32_t rel = dest - as->base.code_offset - 4; in asm_xtensa_bcc_reg_reg_label() 216 int32_t rel = dest - as->base.code_offset; in asm_xtensa_mov_reg_pcrel() 226 uint32_t off = as->base.code_offset >> 1 & 1; in asm_xtensa_mov_reg_pcrel() 227 uint32_t pad = (5 - as->base.code_offset) & 3; in asm_xtensa_mov_reg_pcrel() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | sscanf.c | 83 if (*base == 0) { in _parse_integer_fixup_radix() 90 *base = 10; in _parse_integer_fixup_radix() 122 if ((base == 16 || base == 0) && str[0] == '0' && _tolower(str[1]) == 'x') { in judge_digit_width() 130 }else if(base == 16){ in judge_digit_width() 135 }else if(base == 8 ||(base == 0 && str[0] == '0' )) { in judge_digit_width() 160 unsigned int base; in _vsscanf() local 263 base = 10; in _vsscanf() 303 base = 8; in _vsscanf() 308 base = 16; in _vsscanf() 312 base = 0; in _vsscanf() [all …]
|
A D | strtoul.c | 141 int base) in _strtoul_r() argument 160 if ((base == 0 || base == 16) && in _strtoul_r() 164 base = 16; in _strtoul_r() 166 if (base == 0) in _strtoul_r() 167 base = c == '0' ? 8 : 10; in _strtoul_r() 168 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; in _strtoul_r() 169 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in _strtoul_r() 177 if (c >= base) in _strtoul_r() 183 acc *= base; in _strtoul_r() 202 int base) in _strtoul() argument [all …]
|
A D | strtol.c | 139 int base) in _strtol_r() argument 160 if ((base == 0 || base == 16) && in _strtol_r() 164 base = 16; in _strtol_r() 166 if (base == 0) in _strtol_r() 167 base = c == '0' ? 8 : 10; in _strtol_r() 187 cutlim = cutoff % (unsigned long)base; in _strtol_r() 188 cutoff /= (unsigned long)base; in _strtol_r() 196 if (c >= base) in _strtol_r() 202 acc *= base; in _strtol_r() 221 int base) in _strtol() argument [all …]
|
A D | strtod.c | 78 if (*base == 0) { in _parse_integer_fixup_radix() 81 *base = 16; in _parse_integer_fixup_radix() 83 *base = 8; in _parse_integer_fixup_radix() 85 *base = 10; in _parse_integer_fixup_radix() 87 if (*base == 16 && s[0] == '0' && _tolower(s[1]) == 'x') in _parse_integer_fixup_radix() 162 if (val >= base) in _parse_integer() 172 res = mul64_8(res , (unsigned char)base) + val; in _parse_integer() 196 cp = _parse_integer_fixup_radix(cp, &base); in _strtoull() 197 rv = _parse_integer(cp, base, &result); in _strtoull() 214 return -_strtoull(cp + 1, endp, base); in _strtoll() [all …]
|
A D | strtoul_bk.c | 46 _LONG_CALL_ unsigned long _strtoul(const char *cp, char **endp, unsigned int base) in _strtoul() argument 48 return _strtoull(cp, endp, base); in _strtoul() 52 u32 Strtoul(const u8 *nptr, u8 **endptr, u32 base) in Strtoul() argument 58 if (base==16 && nptr[0]=='0') goto skip0x; in Strtoul() 59 if (!base) { in Strtoul() 61 base=8; in Strtoul() 65 base=16; in Strtoul() 68 base=10; in Strtoul() 73 if (c>=base) break; in Strtoul() 75 register u32 w=v*base; in Strtoul()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/port/ |
A D | strtoull.c | 46 strtoull(const char *nptr, char **endptr, int base) in strtoull() argument 69 if ((base == 0 || base == 16) && in strtoull() 76 base = 16; in strtoull() 78 if (base == 0) in strtoull() 79 base = c == '0' ? 8 : 10; in strtoull() 81 if (base < 2 || base > 36) in strtoull() 84 cutoff = ULLONG_MAX / base; in strtoull() 85 cutlim = ULLONG_MAX % base; in strtoull() 95 if (c >= base) in strtoull() 101 acc *= base; in strtoull()
|
A D | strtoul.c | 49 strtoul(const char *nptr, char **endptr, int base) in strtoul() argument 71 if ((base == 0 || base == 16) && in strtoul() 75 base = 16; in strtoul() 77 if (base == 0) in strtoul() 78 base = c == '0' ? 8 : 10; in strtoul() 80 cutoff = ULONG_MAX / (unsigned long)base; in strtoul() 81 cutlim = (int)(ULONG_MAX % (unsigned long)base); in strtoul() 89 if (c >= base) in strtoul() 99 acc *= (unsigned long)base; in strtoul()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/NN/Source/SoftmaxFunctions/ |
A D | arm_softmax_q15.c | 66 q31_t base; in arm_softmax_q15() local 67 base = -1 * 0x100000; in arm_softmax_q15() 70 if (vec_in[i] > base) in arm_softmax_q15() 72 base = vec_in[i]; in arm_softmax_q15() 80 base = base - 16; in arm_softmax_q15() 86 if (vec_in[i] > base) in arm_softmax_q15() 88 shift = (uint8_t)__USAT(vec_in[i] - base, 5); in arm_softmax_q15() 103 if (vec_in[i] > base) in arm_softmax_q15() 106 shift = (uint8_t)__USAT(17 + base - vec_in[i], 5); in arm_softmax_q15()
|
A D | arm_softmax_q7.c | 66 q15_t base; in arm_softmax_q7() local 67 base = -128; in arm_softmax_q7() 72 if (vec_in[i] > base) in arm_softmax_q7() 74 base = vec_in[i]; in arm_softmax_q7() 83 base = base - (1 << 3); in arm_softmax_q7() 89 shift = (uint8_t)__USAT(vec_in[i] - base, 3); in arm_softmax_q7() 100 shift = (uint8_t)__USAT(13 + base - vec_in[i], 5); in arm_softmax_q7()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/NN/Source/SoftmaxFunctions/ |
A D | arm_softmax_q15.c | 66 q31_t base; in arm_softmax_q15() local 67 base = -1 * 0x100000; in arm_softmax_q15() 70 if (vec_in[i] > base) in arm_softmax_q15() 72 base = vec_in[i]; in arm_softmax_q15() 80 base = base - 16; in arm_softmax_q15() 86 if (vec_in[i] > base) in arm_softmax_q15() 88 shift = (uint8_t)__USAT(vec_in[i] - base, 5); in arm_softmax_q15() 103 if (vec_in[i] > base) in arm_softmax_q15() 106 shift = (uint8_t)__USAT(17 + base - vec_in[i], 5); in arm_softmax_q15()
|
A D | arm_softmax_q7.c | 66 q15_t base; in arm_softmax_q7() local 67 base = -128; in arm_softmax_q7() 72 if (vec_in[i] > base) in arm_softmax_q7() 74 base = vec_in[i]; in arm_softmax_q7() 83 base = base - (1 << 3); in arm_softmax_q7() 89 shift = (uint8_t)__USAT(vec_in[i] - base, 3); in arm_softmax_q7() 100 shift = (uint8_t)__USAT(13 + base - vec_in[i], 5); in arm_softmax_q7()
|
/AliOS-Things-master/hardware/chip/smarth_rv64/smarth_rv64/ |
A D | devices.c | 36 uint64_t base; member 44 int32_t target_usart_init(int32_t idx, uint64_t *base, uint32_t *irq, void **handler) in target_usart_init() argument 50 if (base != NULL) { in target_usart_init() 51 *base = sg_usart_config[idx].base; in target_usart_init() 66 uint64_t base; member 82 int32_t target_get_timer(int32_t idx, uint64_t *base, uint32_t *irq, void **handler) in target_get_timer() argument 88 if (base != NULL) { in target_get_timer() 89 *base = sg_timer_config[idx].base; in target_get_timer() 104 uint64_t base; member 141 if (base != NULL) { in target_gpio_port_init() [all …]
|
A D | dw_timer.c | 35 uint64_t base; member 63 dw_timer_reg_t *addr = (dw_timer_reg_t *)(timer_priv->base); in dw_timer_irqhandler() 86 uint64_t *tbase = (uint64_t *)(timer_priv->base); in do_prepare_sleep_action() 94 uint64_t *tbase = (uint64_t *)(timer_priv->base); in do_wakeup_sleep_action() 112 uint64_t base = 0u; in csi_timer_initialize() local 123 timer_priv->base = base; in csi_timer_initialize() 127 dw_timer_reg_t *addr = (dw_timer_reg_t *)(timer_priv->base); in csi_timer_initialize() 155 dw_timer_reg_t *addr = (dw_timer_reg_t *)(timer_priv->base); in csi_timer_uninitialize() 196 dw_timer_reg_t *addr = (dw_timer_reg_t *)(timer_priv->base); in csi_timer_config() 258 dw_timer_reg_t *addr = (dw_timer_reg_t *)(timer_priv->base); in csi_timer_start() [all …]
|
/AliOS-Things-master/components/freetype/src/sfnt/ |
A D | pngshim.c | 64 unsigned int alpha = base[3]; in premultiply_data() 68 base[0] = base[1] = base[2] = base[3] = 0; in premultiply_data() 72 unsigned int red = base[0]; in premultiply_data() 84 base[0] = blue; in premultiply_data() 85 base[1] = green; in premultiply_data() 86 base[2] = red; in premultiply_data() 87 base[3] = alpha; in premultiply_data() 112 base[0] = blue; in convert_bytes_to_data() 113 base[1] = green; in convert_bytes_to_data() 114 base[2] = red; in convert_bytes_to_data() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/platform/ |
A D | stdlib_patch.c | 81 cp = _parse_integer_fixup_radix(cp, &base); in simple_strtoull_patch() 82 rv = _parse_integer(cp, base, &result); in simple_strtoull_patch() 132 unsigned int base; in _vsscanf_patch() local 234 base = 10; in _vsscanf_patch() 274 base = 8; in _vsscanf_patch() 279 base = 16; in _vsscanf_patch() 283 base = 0; in _vsscanf_patch() 360 if(base == 0) in _vsscanf_patch() 361 _parse_integer_fixup_radix(str, &base); in _vsscanf_patch() 365 val.s = div_s64(val.s, base); in _vsscanf_patch() [all …]
|
/AliOS-Things-master/components/linkkit/external/nghttp2/ |
A D | nghttp2_http.c | 95 if (lws(nv->value->base, nv->value->len)) { in check_pseudo_header() 125 if (nv->name->base[0] == ':') { in http_request_on_header() 149 switch (nv->value->base[6]) { in http_request_on_header() 179 if (nv->value->base[0] == '/') { in http_request_on_header() 227 if (nv->name->base[0] == ':') { in http_request_on_header() 232 if (nv->name->base[0] != ':') { in http_request_on_header() 242 if (nv->name->base[0] == ':') { in http_response_on_header() 309 if (nv->name->base[0] == ':') { in http_response_on_header() 314 if (nv->name->base[0] != ':') { in http_response_on_header() 445 uint8_t c = nv->name->base[i]; in nghttp2_http_on_header() [all …]
|
/AliOS-Things-master/components/SDL2/src/video/khronos/vulkan/ |
A D | vk_icd.h | 100 VkIcdSurfaceBase base; member 108 VkIcdSurfaceBase base; member 116 VkIcdSurfaceBase base; member 124 VkIcdSurfaceBase base; member 132 VkIcdSurfaceBase base; member 140 VkIcdSurfaceBase base; member 147 VkIcdSurfaceBase base; member 154 VkIcdSurfaceBase base; member 160 VkIcdSurfaceBase base; member
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | depcomp | 254 tmpdepfile1=$dir$base.u 255 tmpdepfile2=$base.u 259 tmpdepfile1=$dir$base.u 260 tmpdepfile2=$dir$base.u 261 tmpdepfile3=$dir$base.u 349 tmpdepfile1=$dir$base.d 353 tmpdepfile1=$dir$base.d 354 tmpdepfile2=$dir$base.d 414 tmpdepfile2=$dir$base.d 415 tmpdepfile3=$dir$base.d [all …]
|
/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_qsort.c | 35 qsort(base, nmemb, size, compare); in SDL_qsort() 328 first=base; \ 330 while (last!=base) { \ 333 if (first!=base) swapper(first,(char*)base); 337 last=((char*)base)+nmemb*size; \ 488 (first-(char*)base)/WORD_BYTES, in qsort_words() 489 (last-(char*)base)/WORD_BYTES); in qsort_words() 502 …err, "after partitioning first=#%lu last=#%lu\n", (first-(char*)base)/4lu, (last-(char*)base)/4lu); in qsort_words() 510 last=((char*)base)+nmemb*WORD_BYTES; in qsort_words() 528 if (((size_t)base|size)&(WORD_BYTES-1)) in qsortG() [all …]
|
/AliOS-Things-master/components/py_engine/modules/minicv/base/ |
A D | cv.mk | 4 set(CINTERFACEDIR ${MPYADAPTORDIR}/component/minicv/base/modules/c) 5 set(CORE ${MPYADAPTORDIR}/component/minicv/base/modules/core) 6 set(MLDIR ${MPYADAPTORDIR}/component/minicv/base/modules/ml) 8 include_directories(${MPYADAPTORDIR}/component/minicv/base/include) 9 include_directories(${MPYADAPTORDIR}/component/minicv/base/include/base)
|
/AliOS-Things-master/components/linkkit/iot_coap/server/ |
A D | CoAPPlatform.c | 11 unsigned char base; in platform_aton() local 27 base = 10; in platform_aton() 31 base = 16; in platform_aton() 34 base = 8; in platform_aton() 39 val = (val * base) + (int)(c - '0'); in platform_aton() 41 } else if (base == 16 && isxdigit(c)) { in platform_aton()
|