/AliOS-Things-master/components/cjson/src/ |
A D | cJPath.c | 252 const char *cur_pos = jpath; in lex_process() local 256 cur_pos = get_next_word(cur_pos, &wordbegin, &wordlen); in lex_process() 333 } while (cur_pos && cur_pos[0] && ret == 0); in lex_process() 348 const char *cur_pos = jpath; 354 cur_pos = get_next_word(cur_pos, &wordbegin, &wordlen); 371 } while (cur_pos && cur_pos[0]);
|
/AliOS-Things-master/components/littlevgl/src/lv_objx/ |
A D | lv_spinbox.c | 437 uint8_t cur_pos = ext->digit_count; in lv_spinbox_updatevalue() local 440 cur_pos--; in lv_spinbox_updatevalue() 443 if(cur_pos > intDigits) cur_pos++; /*Skip teh decimal point*/ in lv_spinbox_updatevalue() 445 cur_pos += ext->digit_padding_left; in lv_spinbox_updatevalue() 447 lv_ta_set_cursor_pos(spinbox, cur_pos); in lv_spinbox_updatevalue()
|
A D | lv_ta.c | 378 uint16_t cur_pos = ext->cursor.pos; in lv_ta_del_char() local 380 if(cur_pos == 0) return; in lv_ta_del_char() 552 lv_point_t cur_pos; in lv_ta_set_cursor_pos() local 557 lv_label_get_letter_pos(ext->label, pos, &cur_pos); in lv_ta_set_cursor_pos() 563 if(lv_obj_get_y(label_par) + cur_pos.y < 0) { in lv_ta_set_cursor_pos() 573 if(lv_obj_get_x(label_par) + cur_pos.x < font_h) { in lv_ta_set_cursor_pos() 574 lv_obj_set_x(label_par, -cur_pos.x + font_h); in lv_ta_set_cursor_pos() 583 ext->cursor.valid_x = cur_pos.x; in lv_ta_set_cursor_pos() 1621 uint16_t cur_pos = lv_ta_get_cursor_pos(ta); in refr_cursor_area() local 1625 byte_pos = lv_txt_encoded_get_byte_id(txt, cur_pos); in refr_cursor_area() [all …]
|
/AliOS-Things-master/components/freetype/src/pshinter/ |
A D | pshalgo.c | 463 hint->cur_pos = pos; in psh_hint_align() 497 hint->cur_pos = align.align_bot; in psh_hint_align() 502 hint->cur_pos = align.align_bot; in psh_hint_align() 532 hint->cur_pos = pos; in psh_hint_align() 614 pos = hint->cur_pos; in psh_hint_align() 691 hint->cur_pos = pos; 721 hint->cur_pos = align.align_bot; 726 hint->cur_pos = align.align_bot; 831 hint->cur_pos = pos; 1847 point->cur_u = hint->cur_pos; in psh_glyph_interpolate_strong_points() [all …]
|
A D | pshalgo.h | 57 FT_Pos cur_pos; member
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | backward_references_enc.h | 188 PixOrCopy* cur_pos; // current position member 198 return (c->cur_pos != NULL); in VP8LRefsCursorOk() 206 if (++c->cur_pos == c->last_pos_) VP8LRefsCursorNextBlock(c); in VP8LRefsCursorNext()
|
A D | backward_references_enc.c | 118 c.cur_pos = c.cur_block_->start_; in VP8LRefsCursorInit() 119 c.last_pos_ = c.cur_pos + c.cur_block_->size_; in VP8LRefsCursorInit() 121 c.cur_pos = NULL; in VP8LRefsCursorInit() 129 c->cur_pos = (b == NULL) ? NULL : b->start_; in VP8LRefsCursorNextBlock() 680 if (PixOrCopyIsCopy(c.cur_pos)) { in BackwardReferences2DLocality() 681 const int dist = c.cur_pos->argb_or_distance; in BackwardReferences2DLocality() 683 c.cur_pos->argb_or_distance = transformed_dist; in BackwardReferences2DLocality() 728 const PixOrCopy* const v = c.cur_pos; in CalculateBestCacheSize() 803 PixOrCopy* const v = c.cur_pos; in BackwardRefsWithLocalCache()
|
A D | histogram_enc.c | 81 VP8LHistogramAddSinglePixOrCopy(histo, c.cur_pos, NULL, 0); in VP8LHistogramStoreRefs() 567 const PixOrCopy* const v = c.cur_pos; in HistogramBuild()
|
A D | backward_references_cost_enc.c | 72 VP8LHistogramAddSinglePixOrCopy(histo, c.cur_pos, VP8LDistanceToPlaneCode, in CostModelBuild()
|
A D | vp8l_enc.c | 727 const PixOrCopy* const v = c.cur_pos; in StoreImageToBitMask()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | jscompress.c | 667 const int *hash_next, int cur_pos) in find_longest_match() argument 671 len_max = min_int(src_len - cur_pos, MATCH_LEN_MAX); in find_longest_match() 674 pos_min = max_int(cur_pos - DIST_MAX - 1, 0); in find_longest_match() 675 pos = hash_next[cur_pos]; in find_longest_match() 678 if (src[cur_pos + i] != src[pos + i]) in find_longest_match() 687 *pdist = cur_pos - match_pos - 1; in find_longest_match()
|
/AliOS-Things-master/components/linkkit/wifi_provision/frameworks/ |
A D | zconfig_protocol.h | 87 uint8_t cur_pos; /* data abs. position */ member 132 #define zc_cur_pos (zconfig_data->data[tods].cur_pos)
|
/AliOS-Things-master/components/fatfs/src/ |
A D | fatfs_vfs.c | 239 int64_t cur_pos, new_pos, size; in fatfs_vfs_lseek() local 251 cur_pos = f_tell(f); in fatfs_vfs_lseek() 252 new_pos = cur_pos + off; in fatfs_vfs_lseek()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | miniz.h | 2351 mz_uint cur_pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK; in tdefl_compress_fast() local 2378 mz_uint8 *pCur_dict = d->m_dict + cur_pos; in tdefl_compress_fast() 2435 cur_pos = (cur_pos + cur_match_len) & TDEFL_LZ_DICT_SIZE_MASK; in tdefl_compress_fast() 2452 mz_uint8 lit = d->m_dict[cur_pos]; in tdefl_compress_fast() 2463 cur_pos = (cur_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK; in tdefl_compress_fast() 2521 mz_uint len_to_move, cur_match_dist, cur_match_len, cur_pos; in tdefl_compress_normal() local 2567 mz_uint8 c = d->m_dict[(cur_pos - 1) & TDEFL_LZ_DICT_SIZE_MASK]; in tdefl_compress_normal() 2568 …cur_match_len = 0; while (cur_match_len < d->m_lookahead_size) { if (d->m_dict[cur_pos + cur_match… in tdefl_compress_normal() 2592 …d->m_saved_lit = d->m_dict[cur_pos]; d->m_saved_match_dist = cur_match_dist; d->m_saved_match_len … in tdefl_compress_normal() 2602 tdefl_record_literal(d, d->m_dict[MZ_MIN(cur_pos, sizeof(d->m_dict) - 1)]); in tdefl_compress_normal() [all …]
|