Home
last modified time | relevance | path

Searched refs:start_pos (Results 1 – 10 of 10) sorted by relevance

/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_stream.cxx100 ios::pos_type start_pos; member
106 ios::pos_type start_pos; member
167 uint64 new_offset = static_cast<uint64>(data->start_pos) + off; in _tiffosSeekProc()
217 origin = data->start_pos; in _tiffosSeekProc()
231 if( (static_cast<uint64>(origin) + off) > static_cast<uint64>(data->start_pos) ) { in _tiffosSeekProc()
260 uint64 new_offset = static_cast<uint64>(data->start_pos) + off; in _tiffisSeekProc()
292 return (uint64) (data->stream->tellg() - data->start_pos); in _tiffisSeekProc()
366 data->start_pos = data->stream->tellp(); in _tiffStreamOpen()
381 data->start_pos = data->stream->tellg(); in _tiffStreamOpen()
/AliOS-Things-master/components/py_engine/engine/extmod/
A Dmoduheapq.c41 STATIC void uheapq_heap_siftdown(mp_obj_list_t *heap, mp_uint_t start_pos, mp_uint_t pos) { in uheapq_heap_siftdown() argument
43 while (pos > start_pos) { in uheapq_heap_siftdown()
57 mp_uint_t start_pos = pos; in uheapq_heap_siftup() local
70 uheapq_heap_siftdown(heap, start_pos, pos); in uheapq_heap_siftup()
A Dmodutimeq.c88 STATIC void utimeq_heap_siftdown(mp_obj_utimeq_t *heap, mp_uint_t start_pos, mp_uint_t pos) { in utimeq_heap_siftdown() argument
90 while (pos > start_pos) { in utimeq_heap_siftdown()
105 mp_uint_t start_pos = pos; in utimeq_heap_siftup() local
121 utimeq_heap_siftdown(heap, start_pos, pos); in utimeq_heap_siftup()
/AliOS-Things-master/components/py_engine/engine/tools/
A Dcc162 start_pos = pos
77 assert pos != start_pos
82 start_pos = pos
92 if pos == start_pos:
/AliOS-Things-master/components/py_engine/engine/py/
A Dmap.c218 size_t start_pos = pos; in mp_map_lookup() local
263 if (pos == start_pos) { in mp_map_lookup()
279 start_pos = pos = hash % map->alloc; in mp_map_lookup()
326 size_t start_pos = pos; in mp_set_lookup() local
365 if (pos == start_pos) { in mp_set_lookup()
377 start_pos = pos = hash % set->alloc; in mp_set_lookup()
/AliOS-Things-master/components/freetype/src/type1/
A Dt1parse.c276 FT_Long start_pos = FT_STREAM_POS(); in T1_Get_Private_Dict() local
306 if ( FT_STREAM_SEEK( start_pos ) || in T1_Get_Private_Dict()
/AliOS-Things-master/components/linkkit/infra/
A Dinfra_cjson.c163 int start_pos = input_buffer->offset; in parse_array() local
222 item->value = (char *)(input_buffer->content + start_pos); in parse_array()
223 item->value_length = input_buffer->offset - start_pos + 1; in parse_array()
240 int start_pos = input_buffer->offset; in parse_object() local
314 item->value = (char *)(input_buffer->content + start_pos); in parse_object()
315 item->value_length = input_buffer->offset - start_pos + 1; in parse_object()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/
A Dpngfix.c2621 fpos_t start_pos; in zlib_check() local
2625 file_getpos(file, &start_pos); in zlib_check()
2695 file_setpos(file, &start_pos); in zlib_check()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/
A Dreference_ops.h1409 const int start_pos = (i * dims_at_axis + j) * copy_size; in Reverse() local
1410 Scalar* output_ptr = output_data + start_pos; in Reverse()
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/
A Dduktape.c47883 DUK_ASSERT(start_pos >= 0 && start_pos <= len);
47888 start_pos = end_pos;
47922 if (start_pos < 0) {
47923 start_pos = len + start_pos;
47925 DUK_ASSERT(start_pos >= 0 && start_pos <= len);
47932 end_pos = start_pos + duk_to_int_clamped(thr, 1, 0, len - start_pos);
47934 DUK_ASSERT(start_pos >= 0 && start_pos <= len);
47955 if (start_pos < 0) {
47956 start_pos = len + start_pos;
47966 DUK_ASSERT(start_pos >= 0 && start_pos <= len);
[all …]

Completed in 280 milliseconds