Home
last modified time | relevance | path

Searched refs:start_offset (Results 1 – 14 of 14) sorted by relevance

/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dfilters.c50 const size_t start_offset = row * stride; in DoHorizontalFilter_C() local
53 in += start_offset; in DoHorizontalFilter_C()
54 out += start_offset; in DoHorizontalFilter_C()
87 const size_t start_offset = row * stride; in DoVerticalFilter_C() local
90 in += start_offset; in DoVerticalFilter_C()
91 out += start_offset; in DoVerticalFilter_C()
132 const size_t start_offset = row * stride; in DoGradientFilter_C() local
135 in += start_offset; in DoGradientFilter_C()
136 out += start_offset; in DoGradientFilter_C()
A Dfilters_mips_dsp_r2.c201 const size_t start_offset = row * stride; in DoHorizontalFilter_MIPSdspR2() local
204 in += start_offset; in DoHorizontalFilter_MIPSdspR2()
205 out += start_offset; in DoHorizontalFilter_MIPSdspR2()
249 const size_t start_offset = row * stride; in DoVerticalFilter_MIPSdspR2() local
252 in += start_offset; in DoVerticalFilter_MIPSdspR2()
253 out += start_offset; in DoVerticalFilter_MIPSdspR2()
317 const size_t start_offset = row * stride; in DoGradientFilter_MIPSdspR2() local
320 in += start_offset; in DoGradientFilter_MIPSdspR2()
321 out += start_offset; in DoGradientFilter_MIPSdspR2()
A Dfilters_neon.c72 const size_t start_offset = row * stride; in DoHorizontalFilter_NEON() local
75 in += start_offset; in DoHorizontalFilter_NEON()
76 out += start_offset; in DoHorizontalFilter_NEON()
111 const size_t start_offset = row * stride; in DoVerticalFilter_NEON() local
114 in += start_offset; in DoVerticalFilter_NEON()
115 out += start_offset; in DoVerticalFilter_NEON()
173 const size_t start_offset = row * stride; in DoGradientFilter_NEON() local
176 in += start_offset; in DoGradientFilter_NEON()
177 out += start_offset; in DoGradientFilter_NEON()
A Dfilters_sse2.c79 const size_t start_offset = row * stride; in DoHorizontalFilter_SSE2() local
82 in += start_offset; in DoHorizontalFilter_SSE2()
83 out += start_offset; in DoHorizontalFilter_SSE2()
112 const size_t start_offset = row * stride; in DoVerticalFilter_SSE2() local
115 in += start_offset; in DoVerticalFilter_SSE2()
116 out += start_offset; in DoVerticalFilter_SSE2()
174 const size_t start_offset = row * stride; in DoGradientFilter_SSE2() local
177 in += start_offset; in DoGradientFilter_SSE2()
178 out += start_offset; in DoGradientFilter_SSE2()
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/
A Dpbuf.h245 err_t pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr,
256 u16_t pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset);
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/
A Dpbuf.h277 err_t pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr,
288 u16_t pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset);
/AliOS-Things-master/components/lwip/lwip2.0.0/core/
A Dpbuf.c1355 pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr, in pbuf_fill_chksum() argument
1366 if ((start_offset >= p->len) || (start_offset + len > p->len)) { in pbuf_fill_chksum()
1370 dst_ptr = ((char*)p->payload) + start_offset; in pbuf_fill_chksum()
1372 if ((start_offset & 1) != 0) { in pbuf_fill_chksum()
1497 pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset) in pbuf_memfind() argument
1501 if (p->tot_len >= mem_len + start_offset) { in pbuf_memfind()
1502 for (i = start_offset; i <= max; i++) { in pbuf_memfind()
A Ddns.c650 dns_compare_name(const char *query, struct pbuf *p, u16_t start_offset) in dns_compare_name() argument
653 u16_t response_offset = start_offset; in dns_compare_name()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/demux/
A Ddemux.c195 static void SetFrameInfo(size_t start_offset, size_t size, in SetFrameInfo() argument
199 frame->img_components_[0].offset_ = start_offset; in SetFrameInfo()
354 size_t start_offset, uint32_t size) { in StoreChunk() argument
358 chunk->data_.offset_ = start_offset; in StoreChunk()
808 size_t start_offset = image->offset_; in GetFramePayload() local
817 start_offset = alpha->offset_; in GetFramePayload()
820 return mem_buf + start_offset; in GetFramePayload()
/AliOS-Things-master/components/py_engine/engine/py/
A Dobjgenerator.c122 uintptr_t start_offset = ((uintptr_t *)self_fun->bytecode)[1]; in native_gen_wrap_call() local
123 o->code_state.ip = MICROPY_MAKE_POINTER_CALLABLE((void *)(self_fun->bytecode + start_offset)); in native_gen_wrap_call()
A Demitnative.c228 int start_offset; member
521 mp_asm_base_data(&emit->as->base, ASM_WORD_SIZE, (uintptr_t)emit->start_offset); in emit_native_start_pass()
1291 emit->start_offset = mp_asm_base_get_code_pos(&emit->as->base); in emit_native_global_exc_entry()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/flatbuffers/include/flatbuffers/
A Dutil.h653 size_t start_offset = 0; in BufferToHexText() local
663 text.size() + wrapped_line_suffix.size() >= start_offset + max_length) { in BufferToHexText()
666 start_offset = text.size(); in BufferToHexText()
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/httpd/
A Dhttpd.c1766 u16_t start_offset = hdr_len; local
1774 while((q != NULL) && (q->len <= start_offset)) {
1775 start_offset -= q->len;
1780 pbuf_header(q, -(s16_t)start_offset);
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/
A Dduktape.c30900 start_offset = end_offset; in duk_substring()
30904 DUK_ASSERT(start_offset <= end_offset && start_offset <= DUK_HSTRING_GET_CHARLEN(h)); in duk_substring()
33167 duk_int_t start_offset; in duk__clamp_startend_nonegidx_noshift() local
33181 DUK_ASSERT(start_offset >= 0); in duk__clamp_startend_nonegidx_noshift()
33205 duk_int_t start_offset; in duk__clamp_startend_negidx_shifted() local
33219 if (start_offset < 0) { in duk__clamp_startend_negidx_shifted()
33220 start_offset = buffer_length + start_offset; in duk__clamp_startend_negidx_shifted()
33232 if (start_offset < 0) { in duk__clamp_startend_negidx_shifted()
33233 start_offset = 0; in duk__clamp_startend_negidx_shifted()
33235 start_offset = buffer_length; in duk__clamp_startend_negidx_shifted()
[all …]

Completed in 276 milliseconds