Home
last modified time | relevance | path

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

12345678910>>...26

/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_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 …]
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 …]
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 …]
Dh264dec.c72 H264SliceContext *sl = &h->slice_ctx[0]; in h264_er_decode_mb() local
74 sl->mb_x = mb_x; in h264_er_decode_mb()
75 sl->mb_y = mb_y; in h264_er_decode_mb()
76 sl->mb_xy = mb_x + mb_y * h->mb_stride; in h264_er_decode_mb()
77 memset(sl->non_zero_count_cache, 0, sizeof(sl->non_zero_count_cache)); in h264_er_decode_mb()
83 if (ref >= sl->ref_count[0]) in h264_er_decode_mb()
85 if (!sl->ref_list[0][ref].data[0]) { in h264_er_decode_mb()
89 if ((sl->ref_list[0][ref].reference&3) != 3) { in h264_er_decode_mb()
93 fill_rectangle(&h->cur_pic.ref_index[0][4 * sl->mb_xy], in h264_er_decode_mb()
95 fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1); in h264_er_decode_mb()
[all …]
Ddxva2_h264.c220 H264SliceContext *sl = &h->slice_ctx[0]; in fill_slice_long() local
229 slice->first_mb_in_slice = (sl->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + sl->mb_x; in fill_slice_long()
231 slice->BitOffsetToSliceData = get_bits_count(&sl->gb) - 8; in fill_slice_long()
232 slice->slice_type = ff_h264_get_slice_type(sl); in fill_slice_long()
233 if (sl->slice_type_fixed) in fill_slice_long()
235 slice->luma_log2_weight_denom = sl->pwt.luma_log2_weight_denom; in fill_slice_long()
236 slice->chroma_log2_weight_denom = sl->pwt.chroma_log2_weight_denom; in fill_slice_long()
237 if (sl->list_count > 0) in fill_slice_long()
238 slice->num_ref_idx_l0_active_minus1 = sl->ref_count[0] - 1; in fill_slice_long()
239 if (sl->list_count > 1) in fill_slice_long()
[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 …]
Dcamapplication.c74 static CamReturn open_session_request_cb (CamSL * sl,
76 static CamReturn session_opened_cb (CamSL * sl, CamSLSession * session);
77 static CamReturn session_closed_cb (CamSL * sl, CamSLSession * session);
78 static CamReturn session_data_cb (CamSL * sl,
96 cam_al_new (CamSL * sl) in cam_al_new() argument
100 al->sl = sl; in cam_al_new()
103 sl->user_data = al; in cam_al_new()
104 sl->open_session_request = open_session_request_cb; in cam_al_new()
105 sl->session_opened = session_opened_cb; in cam_al_new()
106 sl->session_closed = session_closed_cb; in cam_al_new()
[all …]
Dcamsession.h61 CamReturn (*open_session_request) (CamSL *sl, CamSLSession *session,
63 CamReturn (*session_opened) (CamSL *sl, CamSLSession *session);
64 CamReturn (*session_closed) (CamSL *sl, CamSLSession *session);
65 CamReturn (*session_data) (CamSL *sl, CamSLSession *session,
73 CamSL *sl; member
85 void cam_sl_destroy (CamSL *sl);
87 CamReturn cam_sl_create_session (CamSL *sl, CamTLConnection *connection,
91 void cam_sl_calc_buffer_size (CamSL *sl,
/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/node/deps/openssl/openssl/crypto/ripemd/asm/
Drmd-586.pl55 @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
359 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
360 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
361 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
362 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
363 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
364 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
365 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
366 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
367 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0);
[all …]
/third_party/openssl/crypto/ripemd/asm/
Drmd-586.pl55 @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
359 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
360 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
361 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
362 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
363 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
364 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
365 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
366 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
367 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0);
[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 …]
/third_party/libwebsockets/lib/cose/
Dcose_validate.c238 lws_cose_validate_param_stack_t *sl = &cps->st[cps->sp], *sl0 = &cps->st[0]; in create_alg() local
248 ck = lws_cose_key_from_set(cps->info.keyset, sl->kid.buf, sl->kid.len); in create_alg()
251 lwsl_hexdump_notice(sl->kid.buf, sl->kid.len); in create_alg()
326 if (sl->ph_pos[2] < 2) { in create_alg()
328 sl->ph[2][0] = LWS_CBOR_MAJTYP_BSTR; in create_alg()
329 p = &sl->ph[2][0]; in create_alg()
332 if (sl->ph_pos[2] < 24) { in create_alg()
333 sl->ph[2][2] = (uint8_t) in create_alg()
334 (LWS_CBOR_MAJTYP_BSTR | sl->ph_pos[2]); in create_alg()
335 p = &sl->ph[2][2]; in create_alg()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
Dplurals.txt1916 sl 0.0 ure
1917 sl 0.00 ure
1918 sl 0.000 ure
1919 sl 0.001 ure
1920 sl 0.002 ure
1921 sl 0.003 ure
1922 sl 0.005 ure
1923 sl 0.01 ure
1924 sl 0.010 ure
1925 sl 0.011 ure
[all …]
/third_party/vk-gl-cts/modules/glshared/
DglsShaderConstExprTests.cpp40 static void addOutputVar (glu::sl::ValueBlock* dst, glu::DataType type, float output) in addOutputVar()
42 dst->outputs.push_back(glu::sl::Value()); in addOutputVar()
45 glu::sl::Value& value = dst->outputs.back(); in addOutputVar()
158 glu::sl::ShaderCaseSpecification spec; in createTests()
161 spec.expectResult = glu::sl::EXPECT_PASS; in createTests()
162 spec.caseType = glu::sl::CASETYPE_VERTEX_ONLY; in createTests()
179 glu::sl::ShaderCaseSpecification spec; in createTests()
182 spec.expectResult = glu::sl::EXPECT_PASS; in createTests()
183 spec.caseType = glu::sl::CASETYPE_FRAGMENT_ONLY; in createTests()
212 glu::sl::ShaderCaseSpecification spec; in createTests()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/format/
Dplurals.txt1916 sl 0.0 ure
1917 sl 0.00 ure
1918 sl 0.000 ure
1919 sl 0.001 ure
1920 sl 0.002 ure
1921 sl 0.003 ure
1922 sl 0.005 ure
1923 sl 0.01 ure
1924 sl 0.010 ure
1925 sl 0.011 ure
[all …]

12345678910>>...26