Home
last modified time | relevance | path

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

12

/AliOS-Things-master/components/freetype/src/autofit/
A Dafangles.c251 FT_Pos swap; in af_sort_pos() local
261 swap = table[j]; in af_sort_pos()
263 table[j - 1] = swap; in af_sort_pos()
278 AF_WidthRec swap; in af_sort_and_quantize_widths() local
292 swap = table[j]; in af_sort_and_quantize_widths()
294 table[j - 1] = swap; in af_sort_and_quantize_widths()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/kernels/
A Dtop_n.h227 using std::swap; in PushInternal()
228 swap(elements_.front(), elements_.back()); in PushInternal()
264 using std::swap; in peek_bottom()
265 swap(elements_[0], elements_[min_candidate]); in peek_bottom()
275 out->swap(elements_); in Extract()
288 out->swap(elements_); in ExtractUnsorted()
A Dctc_beam_search.h206 (*output)[i][b].swap(beams[i]); in Decode()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dcutils.c463 exchange_f swap = exchange_func(base, size); in heapsortx() local
476 swap(basep + r, basep + c, size); in heapsortx()
480 swap(basep, basep + i, size); in heapsortx()
487 swap(basep + r, basep + c, size); in heapsortx()
507 exchange_f swap = exchange_func(base, size); in rqsort() local
535 swap(ptr, m, size); /* move the pivot to the start or the array */ in rqsort()
543 swap(plt, pi, size); in rqsort()
554 swap(pgt, pj, size); in rqsort()
559 swap(pi, pj, size); in rqsort()
615 swap(pj, pj - size, size); in rqsort()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/puff/
A Dpufftest.c63 void *buf, *swap; in load() local
76 if (size == *len || (swap = realloc(buf, size)) == NULL) { in load()
81 buf = swap; in load()
/AliOS-Things-master/components/linkkit/external/nghttp2/
A Dnghttp2_pq.c48 static void swap(nghttp2_pq *pq, size_t i, size_t j) in swap() function
67 swap(pq, parent, index); in bubble_up()
121 swap(pq, index, minindex); in bubble_down()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/flatbuffers/include/flatbuffers/
A Dflatbuffers.h850 swap(temp);
994 void swap(vector_downward &other) {
995 using std::swap;
1001 swap(buf_, other.buf_);
1002 swap(cur_, other.cur_);
1003 swap(scratch_, other.scratch_);
1007 using std::swap;
1143 using std::swap;
1144 buf_.swap(other.buf_);
1147 swap(nested, other.nested);
[all …]
A Dstl_emulation.h265 void swap(unique_ptr& u) {
389 void swap(Optional &other) FLATBUFFERS_NOEXCEPT {
390 std::swap(value_, other.value_);
391 std::swap(has_value_, other.has_value_);
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/
A D.gitignore24 # Vim swap files
/AliOS-Things-master/components/udisplay/include/
A Dudisplay.h20 bool swap; member
/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_value.cpp278 std::swap(cstr_, other.cstr_); in swap()
279 std::swap(index_, other.index_); in swap()
438 swap(other); in Value()
447 Value(other).swap(*this); in operator =()
452 other.swap(*this); in operator =()
457 std::swap(bits_, other.bits_); in swapPayload()
458 std::swap(value_, other.value_); in swapPayload()
466 void Value::swap(Value& other) { in swap() function in Json::Value
468 std::swap(comments_, other.comments_); in swap()
469 std::swap(start_, other.start_); in swap()
[all …]
/AliOS-Things-master/components/freetype/src/base/
A Dftoutln.c562 FT_Vector swap; in FT_Outline_Reverse() local
567 swap = *p; in FT_Outline_Reverse()
569 *q = swap; in FT_Outline_Reverse()
583 char swap; in FT_Outline_Reverse() local
586 swap = *p; in FT_Outline_Reverse()
588 *q = swap; in FT_Outline_Reverse()
/AliOS-Things-master/components/jsoncpp/include/json/
A Dvalue.h280 void swap(CZString& other);
356 void swap(Value& other);
925 inline void swap(Value& a, Value& b) { a.swap(b); } in swap() function
/AliOS-Things-master/components/mbedtls/library/
A Dbignum.c279 int mbedtls_mpi_safe_cond_swap( mbedtls_mpi *X, mbedtls_mpi *Y, unsigned char swap ) in mbedtls_mpi_safe_cond_swap() argument
291 swap = (swap | (unsigned char)-swap) >> 7; in mbedtls_mpi_safe_cond_swap()
297 X->s = X->s * ( 1 - swap ) + Y->s * swap; in mbedtls_mpi_safe_cond_swap()
298 Y->s = Y->s * ( 1 - swap ) + s * swap; in mbedtls_mpi_safe_cond_swap()
304 X->p[i] = X->p[i] * ( 1 - swap ) + Y->p[i] * swap; in mbedtls_mpi_safe_cond_swap()
305 Y->p[i] = Y->p[i] * ( 1 - swap ) + tmp * swap; in mbedtls_mpi_safe_cond_swap()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/
A Diosbuild.sh107 --enable-libwebpdecoder --enable-swap-16bit-csp \
A Dconfigure.ac666 dnl === If --enable-swap-16bit-csp is defined, add -DWEBP_SWAP_16BIT_CSP=1
669 AC_MSG_CHECKING(if --enable-swap-16bit-csp option is specified)
670 AC_ARG_ENABLE([swap-16bit-csp],
671 AS_HELP_STRING([--enable-swap-16bit-csp],
672 [Enable byte swap for 16 bit colorspaces]))
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/hal/
A Dhal_codec.h151 void hal_codec_swap_output(bool swap);
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/audioflinger/
A Daudioflinger.h94 void af_codec_swap_output(bool swap);
/AliOS-Things-master/components/oss/src/external/json/
A Djson.h716 void swap(CZString& other);
798 void swap(Value& other);
1342 inline void swap(AlibabaCloud::OSS::Json::Value& a, AlibabaCloud::OSS::Json::Value& b) { a.swap(b);… in swap() function
A Djsoncpp.cpp2794 void Value::CZString::swap(CZString& other) { in swap() function in AlibabaCloud::OSS::Json::Value::CZString
2795 std::swap(cstr_, other.cstr_); in swap()
2796 std::swap(index_, other.index_); in swap()
2996 swap(other); in Value()
3026 swap(other); in operator =()
3034 std::swap(value_, other.value_); in swapPayload()
3046 void Value::swap(Value& other) { in swap() function in AlibabaCloud::OSS::Json::Value
3048 std::swap(comments_, other.comments_); in swap()
3049 std::swap(start_, other.start_); in swap()
3050 std::swap(limit_, other.limit_); in swap()
/AliOS-Things-master/components/udisplay/src/
A Dudisplay.c223 ctx->swap = ((fb_var.xres_virtual * fb_var.yres_virtual) / in udisplay_init()
267 if (ctx->swap) { in udisplay_pan_display()
/AliOS-Things-master/components/SDL2/src/video/cocoa/
A DSDL_cocoaopengl.m403 return SDL_SetError("Late swap tearing currently unsupported");
443 threads try to swap at the same time, so put a mutex around it. */
/AliOS-Things-master/components/SDL2/src/gfx/
A DChangeLog15 * Fixed thick line swap bug (patch contributed by Thien-Thi)
111 * hline/vline clipping and swap-logic fixed
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/
A Dmat.h451 std::swap(result.rows, result.cols); in Transpose()
/AliOS-Things-master/components/SDL2/src/gfx/Docs/html/
A Ddoxygen.css554 .directory h3.swap {
559 .directory h3.swap span {

Completed in 48 milliseconds

12