Home
last modified time | relevance | path

Searched refs:sl (Results 1 – 25 of 916) sorted by relevance

12345678910>>...37

/third_party/boost/libs/dll/test/
Dshared_library_load_test.cpp92 shared_library sl(shared_library_path); in main() local
93 BOOST_TEST(sl.is_loaded()); in main()
94 BOOST_TEST(lib_path_equal(sl.location(), shared_library_path)); in main()
100 swap(sl, sl2); in main()
101 BOOST_TEST(!sl.is_loaded()); in main()
102 BOOST_TEST(!sl); in main()
106 sl.assign(sl2); in main()
107 BOOST_TEST(sl.is_loaded()); in main()
108 BOOST_TEST(sl); in main()
111 BOOST_TEST(sl2.location() == sl.location()); in main()
[all …]
Dshared_library_search_symbol_test.cpp30 shared_library sl(shared_library_path); in main() local
31 BOOST_TEST(sl.has("say_hello")); in main()
32 BOOST_TEST(sl.has("lib_version")); in main()
33 BOOST_TEST(sl.has("integer_g")); in main()
34 BOOST_TEST(sl.has(std::string("integer_g"))); in main()
35 BOOST_TEST(!sl.has("i_do_not_exist")); in main()
36 BOOST_TEST(!sl.has(std::string("i_do_not_exist"))); in main()
40 shared_library sl(program_location()); in main() local
41 BOOST_TEST(sl.has("exef")); in main()
42 BOOST_TEST(!sl.has("i_do_not_exist")); in main()
Dshared_library_get_symbol_test.cpp133 shared_library sl(shared_library_path); in main() local
135 BOOST_TEST(sl.get<int>("integer_g") == 100); in main()
137 sl.get<int>("integer_g") = 10; in main()
138 BOOST_TEST(sl.get<int>("integer_g") == 10); in main()
139 BOOST_TEST(sl.get<int>(std::string("integer_g")) == 10); in main()
141 BOOST_TEST(sl.get<say_hello_func>("say_hello")); in main()
142 sl.get<say_hello_func>("say_hello")(); in main()
144 float ver = sl.get<lib_version_func>("lib_version")(); in main()
147 int n = sl.get<increment>("increment")(1); in main()
150 BOOST_TEST(sl.get<const int>("const_integer_g") == 777); in main()
[all …]
/third_party/ffmpeg/libavcodec/
Dh264_cabac.c1262 void ff_h264_init_cabac_states(const H264Context *h, H264SliceContext *sl) in ff_h264_init_cabac_states() argument
1266 const int slice_qp = av_clip(sl->qscale - 6*(h->ps.sps->bit_depth_luma-8), 0, 51); in ff_h264_init_cabac_states()
1268 if (sl->slice_type_nos == AV_PICTURE_TYPE_I) tab = cabac_context_init_I; in ff_h264_init_cabac_states()
1269 else tab = cabac_context_init_PB[sl->cabac_init_idc]; in ff_h264_init_cabac_states()
1279 sl->cabac_state[i] = pre; in ff_h264_init_cabac_states()
1283 static int decode_cabac_field_decoding_flag(const H264Context *h, H264SliceContext *sl) in decode_cabac_field_decoding_flag() argument
1285 const int mbb_xy = sl->mb_xy - 2*h->mb_stride; in decode_cabac_field_decoding_flag()
1289 …ctx += sl->mb_field_decoding_flag & !!sl->mb_x; //for FMO:(s->current_picture.mb_type[mba_xy] >> 7… in decode_cabac_field_decoding_flag()
1290 ctx += (h->cur_pic.mb_type[mbb_xy] >> 7) & (h->slice_table[mbb_xy] == sl->slice_num); in decode_cabac_field_decoding_flag()
1292 return get_cabac_noinline( &sl->cabac, &(sl->cabac_state+70)[ctx] ); in decode_cabac_field_decoding_flag()
[all …]
Dh264_mb.c39 static inline int get_lowest_part_list_y(H264SliceContext *sl, in get_lowest_part_list_y() argument
42 int raw_my = sl->mv_cache[list][scan8[n]][1]; in get_lowest_part_list_y()
52 static inline void get_lowest_part_y(const H264Context *h, H264SliceContext *sl, in get_lowest_part_y() argument
59 y_offset += 16 * (sl->mb_y >> MB_FIELD(sl)); in get_lowest_part_y()
62 int ref_n = sl->ref_cache[0][scan8[n]]; in get_lowest_part_y()
63 H264Ref *ref = &sl->ref_list[0][ref_n]; in get_lowest_part_y()
70 my = get_lowest_part_list_y(sl, n, height, y_offset, 0); in get_lowest_part_y()
78 int ref_n = sl->ref_cache[1][scan8[n]]; in get_lowest_part_y()
79 H264Ref *ref = &sl->ref_list[1][ref_n]; in get_lowest_part_y()
83 my = get_lowest_part_list_y(sl, n, height, y_offset, 1); in get_lowest_part_y()
[all …]
Dh264_cavlc.c287 static inline int pred_non_zero_count(const H264Context *h, H264SliceContext *sl, int n) in pred_non_zero_count() argument
290 const int left = sl->non_zero_count_cache[index8 - 1]; in pred_non_zero_count()
291 const int top = sl->non_zero_count_cache[index8 - 8]; in pred_non_zero_count()
434 static int decode_residual(const H264Context *h, H264SliceContext *sl, in decode_residual() argument
453 total_coeff= pred_non_zero_count(h, sl, (n - LUMA_DC_BLOCK_INDEX)*16); in decode_residual()
457 total_coeff= pred_non_zero_count(h, sl, n); in decode_residual()
462 sl->non_zero_count_cache[scan8[n]] = total_coeff; in decode_residual()
469 …avctx, AV_LOG_ERROR, "corrupted macroblock %d %d (total_coeff=%d)\n", sl->mb_x, sl->mb_y, total_co… in decode_residual()
619 … av_log(h->avctx, AV_LOG_ERROR, "negative number of zero coeffs at %d %d\n", sl->mb_x, sl->mb_y); in decode_residual()
627 int decode_luma_residual(const H264Context *h, H264SliceContext *sl, in decode_luma_residual() argument
[all …]
Dh264_direct.c38 static int get_scale_factor(H264SliceContext *sl, in get_scale_factor() argument
41 int poc0 = sl->ref_list[0][i].poc; in get_scale_factor()
46 avpriv_request_sample(sl->h264->avctx, "pocdiff overflow"); in get_scale_factor()
48 if (td == 0 || sl->ref_list[0][i].parent->long_ref) { in get_scale_factor()
56 av_log(sl->h264->avctx, AV_LOG_DEBUG, "pocdiff0 overflow\n"); in get_scale_factor()
63 H264SliceContext *sl) in ff_h264_direct_dist_scale_factor() argument
67 const int poc1 = sl->ref_list[1][0].poc; in ff_h264_direct_dist_scale_factor()
73 const int poc1 = sl->ref_list[1][0].parent->field_poc[field]; in ff_h264_direct_dist_scale_factor()
74 for (i = 0; i < 2 * sl->ref_count[0]; i++) in ff_h264_direct_dist_scale_factor()
75 sl->dist_scale_factor_field[field][i ^ field] = in ff_h264_direct_dist_scale_factor()
[all …]
Dh264_mvpred.h39 static av_always_inline int fetch_diagonal_mv(const H264Context *h, H264SliceContext *sl, in fetch_diagonal_mv() argument
43 const int topright_ref = sl->ref_cache[list][i - 8 + part_width]; in fetch_diagonal_mv()
54 sl->mv_cache[list][scan8[0] - 2][0] = mv[0]; \ in fetch_diagonal_mv()
55 sl->mv_cache[list][scan8[0] - 2][1] = mv[1] MV_OP; \ in fetch_diagonal_mv()
60 && sl->ref_cache[list][scan8[0] - 1] != PART_NOT_AVAILABLE) { in fetch_diagonal_mv()
63 AV_ZERO32(sl->mv_cache[list][scan8[0] - 2]); in fetch_diagonal_mv()
64 *C = sl->mv_cache[list][scan8[0] - 2]; in fetch_diagonal_mv()
66 if (!MB_FIELD(sl) && IS_INTERLACED(sl->left_type[0])) { in fetch_diagonal_mv()
67 SET_DIAG_MV(* 2, >> 1, sl->left_mb_xy[0] + h->mb_stride, in fetch_diagonal_mv()
68 (sl->mb_y & 1) * 2 + (i >> 5)); in fetch_diagonal_mv()
[all …]
Dh264_mb_template.c41 static av_noinline void FUNC(hl_decode_mb)(const H264Context *h, H264SliceContext *sl) in FUNC()
43 const int mb_x = sl->mb_x; in FUNC()
44 const int mb_y = sl->mb_y; in FUNC()
45 const int mb_xy = sl->mb_xy; in FUNC()
51 const int transform_bypass = !SIMPLE && (sl->qscale == 0 && h->ps.sps->transform_bypass); in FUNC()
56 dest_y = h->cur_pic.f->data[0] + ((mb_x << PIXEL_SHIFT) + mb_y * sl->linesize) * 16; in FUNC()
57 dest_cb = h->cur_pic.f->data[1] + (mb_x << PIXEL_SHIFT) * 8 + mb_y * sl->uvlinesize * block_h; in FUNC()
58 dest_cr = h->cur_pic.f->data[2] + (mb_x << PIXEL_SHIFT) * 8 + mb_y * sl->uvlinesize * block_h; in FUNC()
60 …h->vdsp.prefetch(dest_y + (sl->mb_x & 3) * 4 * sl->linesize + (64 << PIXEL_SHIFT), sl->linesize… in FUNC()
61 …h->vdsp.prefetch(dest_cb + (sl->mb_x & 7) * sl->uvlinesize + (64 << PIXEL_SHIFT), dest_cr - de… in FUNC()
[all …]
Dh264_slice.c128 static int alloc_scratch_buffers(H264SliceContext *sl, int linesize) in alloc_scratch_buffers() argument
130 const H264Context *h = sl->h264; in alloc_scratch_buffers()
133 av_fast_malloc(&sl->bipred_scratchpad, &sl->bipred_scratchpad_allocated, 16 * 6 * alloc_size); in alloc_scratch_buffers()
136 av_fast_malloc(&sl->edge_emu_buffer, &sl->edge_emu_buffer_allocated, alloc_size * 2 * 21); in alloc_scratch_buffers()
138 av_fast_mallocz(&sl->top_borders[0], &sl->top_borders_allocated[0], in alloc_scratch_buffers()
140 av_fast_mallocz(&sl->top_borders[1], &sl->top_borders_allocated[1], in alloc_scratch_buffers()
143 if (!sl->bipred_scratchpad || !sl->edge_emu_buffer || in alloc_scratch_buffers()
144 !sl->top_borders[0] || !sl->top_borders[1]) { in alloc_scratch_buffers()
145 av_freep(&sl->bipred_scratchpad); in alloc_scratch_buffers()
146 av_freep(&sl->edge_emu_buffer); in alloc_scratch_buffers()
[all …]
Dh264_mc_template.c37 static void mc_part(const H264Context *h, H264SliceContext *sl, in mc_part() argument
51 if ((sl->pwt.use_weight == 2 && list0 && list1 && in mc_part()
52 …(sl->pwt.implicit_weight[sl->ref_cache[0][scan8[n]]][sl->ref_cache[1][scan8[n]]][sl->mb_y & 1] != … in mc_part()
53 sl->pwt.use_weight == 1) in mc_part()
54 mc_part_weighted(h, sl, n, square, height, delta, dest_y, dest_cb, dest_cr, in mc_part()
59 mc_part_std(h, sl, n, square, height, delta, dest_y, dest_cb, dest_cr, in mc_part()
64 static void MCFUNC(hl_motion)(const H264Context *h, H264SliceContext *sl, in MCFUNC()
74 const int mb_xy = sl->mb_xy; in MCFUNC()
80 await_references(h, sl); in MCFUNC()
82 prefetch_motion(h, sl, 0, PIXEL_SHIFT, CHROMA_IDC); in MCFUNC()
[all …]
Dh264_refs.c135 static void h264_initialise_ref_list(H264Context *h, H264SliceContext *sl) in h264_initialise_ref_list() argument
140 if (sl->slice_type_nos == AV_PICTURE_TYPE_B) { in h264_initialise_ref_list()
155 len = build_def_list(sl->ref_list[list], FF_ARRAY_ELEMS(sl->ref_list[0]), in h264_initialise_ref_list()
157 len += build_def_list(sl->ref_list[list] + len, in h264_initialise_ref_list()
158 FF_ARRAY_ELEMS(sl->ref_list[0]) - len, in h264_initialise_ref_list()
162 if (len < sl->ref_count[list]) in h264_initialise_ref_list()
163 memset(&sl->ref_list[list][len], 0, sizeof(H264Ref) * (sl->ref_count[list] - len)); in h264_initialise_ref_list()
169 sl->ref_list[0][i].parent->f->buf[0]->buffer == in h264_initialise_ref_list()
170 sl->ref_list[1][i].parent->f->buf[0]->buffer; i++); in h264_initialise_ref_list()
172 FFSWAP(H264Ref, sl->ref_list[1][0], sl->ref_list[1][1]); in h264_initialise_ref_list()
[all …]
Dvaapi_h264.c197 const H264SliceContext *sl = &h->slice_ctx[0]; in fill_vaapi_plain_pred_weight_table() local
200 *luma_weight_flag = sl->pwt.luma_weight_flag[list]; in fill_vaapi_plain_pred_weight_table()
201 *chroma_weight_flag = sl->pwt.chroma_weight_flag[list]; in fill_vaapi_plain_pred_weight_table()
203 for (i = 0; i < sl->ref_count[list]; i++) { in fill_vaapi_plain_pred_weight_table()
206 if (sl->pwt.luma_weight_flag[list]) { in fill_vaapi_plain_pred_weight_table()
207 luma_weight[i] = sl->pwt.luma_weight[i][list][0]; in fill_vaapi_plain_pred_weight_table()
208 luma_offset[i] = sl->pwt.luma_weight[i][list][1]; in fill_vaapi_plain_pred_weight_table()
210 luma_weight[i] = 1 << sl->pwt.luma_log2_weight_denom; in fill_vaapi_plain_pred_weight_table()
214 if (sl->pwt.chroma_weight_flag[list]) { in fill_vaapi_plain_pred_weight_table()
215 chroma_weight[i][j] = sl->pwt.chroma_weight[i][list][j][0]; in fill_vaapi_plain_pred_weight_table()
[all …]
Dh264dec.h73 #define MB_FIELD(sl) (sl)->mb_field_decoding_flag argument
82 #define MB_FIELD(sl) 0 argument
568 int ff_h264_get_slice_type(const H264SliceContext *sl);
576 int ff_h264_decode_ref_pic_list_reordering(H264SliceContext *sl, void *logctx);
577 int ff_h264_build_ref_list(H264Context *h, H264SliceContext *sl);
585 int ff_h264_decode_ref_pic_marking(H264SliceContext *sl, GetBitContext *gb,
588 void ff_h264_hl_decode_mb(const H264Context *h, H264SliceContext *sl);
595 int ff_h264_decode_mb_cavlc(const H264Context *h, H264SliceContext *sl);
601 int ff_h264_decode_mb_cabac(const H264Context *h, H264SliceContext *sl);
603 void ff_h264_init_cabac_states(const H264Context *h, H264SliceContext *sl);
[all …]
Dh264_loopfilter.c238 H264SliceContext *sl, in h264_filter_mb_fast_internal() argument
251 int mb_xy = sl->mb_xy; in h264_filter_mb_fast_internal()
252 int left_type = sl->left_type[LTOP]; in h264_filter_mb_fast_internal()
253 int top_type = sl->top_type; in h264_filter_mb_fast_internal()
256 int a = 52 + sl->slice_alpha_c0_offset - qp_bd_offset; in h264_filter_mb_fast_internal()
257 int b = 52 + sl->slice_beta_offset - qp_bd_offset; in h264_filter_mb_fast_internal()
262 int qp1 = h->cur_pic.qscale_table[sl->top_mb_xy]; in h264_filter_mb_fast_internal()
363 if( IS_8x8DCT(mb_type) && (sl->cbp&7) == 7 && !chroma444 ) { in h264_filter_mb_fast_internal()
373 …edges = 4 - 3*((mb_type>>3) & !(sl->cbp & 15)); //(mb_type & MB_TYPE_16x16) && !(h->cbp & 15) ? 1 … in h264_filter_mb_fast_internal()
374 … h->h264dsp.h264_loop_filter_strength(bS, sl->non_zero_count_cache, sl->ref_cache, sl->mv_cache, in h264_filter_mb_fast_internal()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/dvb/
Dcamsession.c42 cam_sl_session_new (CamSL * sl, CamTLConnection * connection, in cam_sl_session_new() argument
48 session->sl = sl; in cam_sl_session_new()
65 CamSL *sl = g_new0 (CamSL, 1); in cam_sl_new() local
67 sl->sessions = g_hash_table_new_full (g_direct_hash, g_direct_equal, in cam_sl_new()
70 tl->user_data = sl; in cam_sl_new()
73 return sl; in cam_sl_new()
77 cam_sl_destroy (CamSL * sl) in cam_sl_destroy() argument
79 g_hash_table_destroy (sl->sessions); in cam_sl_destroy()
81 g_free (sl); in cam_sl_destroy()
85 cam_sl_create_session (CamSL * sl, in cam_sl_create_session() argument
[all …]
/third_party/boost/boost/container/detail/
Dmutex.hpp100 #define BOOST_CONTAINER_CAS_LOCK(sl) __sync_lock_test_and_set(sl, 1) argument
101 #define BOOST_CONTAINER_CLEAR_LOCK(sl) __sync_lock_release(sl) argument
105 static inline int boost_container_x86_cas_lock(int *sl) { in boost_container_x86_cas_lock() argument
111 : "r" (val), "m" (*(sl)), "0"(cmp) in boost_container_x86_cas_lock()
116 static inline void boost_container_x86_clear_lock(int* sl) { in boost_container_x86_clear_lock() argument
117 assert(*sl != 0); in boost_container_x86_clear_lock()
122 : "m" (*(sl)), "0"(prev) in boost_container_x86_clear_lock()
126 #define BOOST_CONTAINER_CAS_LOCK(sl) boost_container_x86_cas_lock(sl) argument
127 #define BOOST_CONTAINER_CLEAR_LOCK(sl) boost_container_x86_clear_lock(sl) argument
130 #define BOOST_CONTAINER_CAS_LOCK(sl) interlockedexchange((long volatile*)sl, (long)1) argument
[all …]
/third_party/gettext/gettext-tools/tests/
Dintl-setlocale-133 test -d in-sl-1 || mkdir in-sl-1
34 test -d in-sl-1/de_DE || mkdir in-sl-1/de_DE
35 test -d in-sl-1/de_DE/LC_MESSAGES || mkdir in-sl-1/de_DE/LC_MESSAGES
36 test -d in-sl-1/fr_FR || mkdir in-sl-1/fr_FR
37 test -d in-sl-1/fr_FR/LC_MESSAGES || mkdir in-sl-1/fr_FR/LC_MESSAGES
40 ${MSGFMT} -o in-sl-1/de_DE/LC_MESSAGES/tstprog.mo "$wabs_srcdir"/intl-setlocale-1-1.po
41 ${MSGFMT} -o in-sl-1/fr_FR/LC_MESSAGES/tstprog.mo "$wabs_srcdir"/intl-setlocale-1-2.po
43 cat <<EOF > in-sl-1.ok
52 ../intl-setlocale-1-prg > in-sl-1.out || Exit 1
55 ${DIFF} in-sl-1.ok in-sl-1.out || Exit 1
/third_party/pulseaudio/src/daemon/
Dserver-lookup.c78 pa_dbusobj_server_lookup *sl = user_data; in unregister_cb() local
80 pa_assert(sl); in unregister_cb()
81 pa_assert(sl->path_registered); in unregister_cb()
83 sl->path_registered = false; in unregister_cb()
86 …lerResult handle_introspect(DBusConnection *conn, DBusMessage *msg, pa_dbusobj_server_lookup *sl) { in handle_introspect() argument
140 …erResult handle_get_address(DBusConnection *conn, DBusMessage *msg, pa_dbusobj_server_lookup *sl) { in handle_get_address() argument
149 pa_assert(sl); in handle_get_address()
151 switch (get_address(sl->core->server_type, &address)) { in handle_get_address()
201 …BusHandlerResult handle_get(DBusConnection *conn, DBusMessage *msg, pa_dbusobj_server_lookup *sl) { in handle_get() argument
209 pa_assert(sl); in handle_get()
[all …]
/third_party/boost/boost/dll/detail/posix/
Dshared_library_impl.hpp50 shared_library_impl(BOOST_RV_REF(shared_library_impl) sl) BOOST_NOEXCEPT in shared_library_impl() argument
51 : handle_(sl.handle_) in shared_library_impl()
53 sl.handle_ = NULL; in shared_library_impl()
56 shared_library_impl & operator=(BOOST_RV_REF(shared_library_impl) sl) BOOST_NOEXCEPT { in operator =() argument
57 swap(sl); in operator =()
62 static boost::dll::fs::path decorate(const boost::dll::fs::path & sl) { in decorate() argument
64 std::strncmp(sl.filename().string().c_str(), "lib", 3) in decorate()
65 …? boost::dll::fs::path((sl.has_parent_path() ? sl.parent_path() / L"lib" : L"lib").native() + sl.f… in decorate()
66 : sl in decorate()
72 …void load(boost::dll::fs::path sl, load_mode::type portable_mode, boost::dll::fs::error_code &ec) { in load() argument
[all …]
/third_party/gettext/os2/iconv/
Diconv.c42 size_t sl = 0; in cp_convert() local
59 ucp[sl++] = 'I'; in cp_convert()
60 ucp[sl++] = 'B'; in cp_convert()
61 ucp[sl++] = 'M'; in cp_convert()
62 ucp[sl++] = '-'; in cp_convert()
67 ucp[sl++] = *cp++; in cp_convert()
68 ucp[sl] = 0; in cp_convert()
124 size_t sl = *in_left, nonid; in iconv() local
125 UniChar *ucs = (UniChar *) alloca (sl * sizeof (UniChar)); in iconv()
129 rc = UniUconvToUcs (conv->from, (void **)in, in_left, &ucs, &sl, &retval); in iconv()
[all …]
/third_party/openssl/crypto/ripemd/asm/
Drmd-586.pl56 @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
360 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
361 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
362 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
363 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
364 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
365 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
366 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
367 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
368 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0);
[all …]
/third_party/gettext/gettext-runtime/intl/
Dos2compat.c57 size_t sl = strlen (root); in nlos2_initialize() local
58 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1); in nlos2_initialize()
59 memcpy (_nlos2_libdir, root, sl); in nlos2_initialize()
60 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1); in nlos2_initialize()
71 size_t sl = strlen (root); in nlos2_initialize() local
72 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1); in nlos2_initialize()
73 memcpy (_nlos2_localealiaspath, root, sl); in nlos2_initialize()
74 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1); in nlos2_initialize()
85 size_t sl = strlen (root); in nlos2_initialize() local
86 _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1); in nlos2_initialize()
[all …]
/third_party/boost/boost/dll/detail/windows/
Dshared_library_impl.hpp42 shared_library_impl(BOOST_RV_REF(shared_library_impl) sl) BOOST_NOEXCEPT in shared_library_impl() argument
43 : handle_(sl.handle_) in shared_library_impl()
45 sl.handle_ = NULL; in shared_library_impl()
48 shared_library_impl & operator=(BOOST_RV_REF(shared_library_impl) sl) BOOST_NOEXCEPT { in operator =() argument
49 swap(sl); in operator =()
53 static boost::dll::fs::path decorate(const boost::dll::fs::path& sl) { in decorate() argument
54 boost::dll::fs::path actual_path = sl; in decorate()
59 …void load(boost::dll::fs::path sl, load_mode::type portable_mode, boost::dll::fs::error_code &ec) { in load() argument
64 if (!sl.is_absolute() && !(native_mode & load_mode::search_system_folders)) { in load()
69 prog_loc /= sl; in load()
[all …]
/third_party/libsnd/src/
Dtest_nms_adpcm.c248 int i, j, sl ; in test_nms_adpcm_32() local
259 { sl = pcm_data_src [i * NMS_SAMPLES_PER_BLOCK + j] ; in test_nms_adpcm_32()
260 code = nms_adpcm_encode_sample (&nms, sl) ; in test_nms_adpcm_32()
278 { sl = nms_adpcm_decode_sample (&nms, buffer [j]) ; in test_nms_adpcm_32()
279 if (sl != pcm_data_out32 [i * NMS_SAMPLES_PER_BLOCK + j]) in test_nms_adpcm_32()
281 i * NMS_SAMPLES_PER_BLOCK + j, i, j, pcm_data_out32 [i * NMS_SAMPLES_PER_BLOCK + j], sl) ; in test_nms_adpcm_32()
299 int i, j, sl ; in test_nms_adpcm_24() local
311 { sl = pcm_data_src [i * NMS_SAMPLES_PER_BLOCK + j] ; in test_nms_adpcm_24()
312 code = nms_adpcm_encode_sample (&nms, sl) ; in test_nms_adpcm_24()
331 { sl = nms_adpcm_decode_sample (&nms, buffer [j]) ; in test_nms_adpcm_24()
[all …]

12345678910>>...37