Home
last modified time | relevance | path

Searched refs:c_st (Results 1 – 25 of 40) sorted by relevance

12

/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_pipeline_state.c355 if (IS_ERR(c_st)) in komeda_layer_validate()
356 return PTR_ERR(c_st); in komeda_layer_validate()
414 if (IS_ERR(c_st)) in komeda_wb_layer_validate()
530 if (IS_ERR(c_st)) in komeda_scaler_validate()
592 if (IS_ERR(c_st)) in komeda_splitter_validate()
642 if (IS_ERR(c_st)) in komeda_merger_validate()
691 if (IS_ERR(c_st)) in komeda_compiz_set_input()
729 if (IS_ERR(c_st)) in komeda_compiz_validate()
769 if (IS_ERR(c_st)) in komeda_improc_validate()
828 if (IS_ERR(c_st)) in komeda_timing_ctrlr_validate()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_pipeline_state.c355 if (IS_ERR(c_st)) in komeda_layer_validate()
356 return PTR_ERR(c_st); in komeda_layer_validate()
414 if (IS_ERR(c_st)) in komeda_wb_layer_validate()
530 if (IS_ERR(c_st)) in komeda_scaler_validate()
592 if (IS_ERR(c_st)) in komeda_splitter_validate()
642 if (IS_ERR(c_st)) in komeda_merger_validate()
691 if (IS_ERR(c_st)) in komeda_compiz_set_input()
729 if (IS_ERR(c_st)) in komeda_compiz_validate()
769 if (IS_ERR(c_st)) in komeda_improc_validate()
828 if (IS_ERR(c_st)) in komeda_timing_ctrlr_validate()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_pipeline_state.c355 if (IS_ERR(c_st)) in komeda_layer_validate()
356 return PTR_ERR(c_st); in komeda_layer_validate()
414 if (IS_ERR(c_st)) in komeda_wb_layer_validate()
530 if (IS_ERR(c_st)) in komeda_scaler_validate()
592 if (IS_ERR(c_st)) in komeda_splitter_validate()
642 if (IS_ERR(c_st)) in komeda_merger_validate()
691 if (IS_ERR(c_st)) in komeda_compiz_set_input()
729 if (IS_ERR(c_st)) in komeda_compiz_validate()
769 if (IS_ERR(c_st)) in komeda_improc_validate()
828 if (IS_ERR(c_st)) in komeda_timing_ctrlr_validate()
[all …]
/dports/science/py-pymol/pymol-open-source-2.4.0/layer0/
H A DField.cpp201 int c_st = I->stride[2]; in FieldInterpolatef() local
204 int c_bs = c * c_st; in FieldInterpolatef()
213 result2 += product2 * (*((float *) (data + a_bs + b_bs + c_bs + c_st))); in FieldInterpolatef()
217 result2 += product2 * (*((float *) (data + a_bs + b_bs + b_st + c_bs + c_st))); in FieldInterpolatef()
219 result1 += product1 * (*((float *) (data + a_bs + a_st + b_bs + c_bs + c_st))); in FieldInterpolatef()
222 product2 * (*((float *) (data + a_bs + a_st + b_bs + b_st + c_bs + c_st))); in FieldInterpolatef()
283 int c_st = I->stride[2]; in FieldInterpolate3f() local
287 int c_bs = c * c_st; in FieldInterpolate3f()
307 product2 * (*((float *) (data + a_bs + b_bs + b_st + c_bs + c_st + d_bs))); in FieldInterpolate3f()
310 product1 * (*((float *) (data + a_bs + a_st + b_bs + c_bs + c_st + d_bs))); in FieldInterpolate3f()
[all …]
/dports/cad/verilator/verilator-4.216/test_regress/t/
H A Dt_class_static.v12 static int c_st = 2; register in Cls
18 ++c_st; return c_st;
H A Dt_class_static.out3 12 | static int c_st = 2;
/dports/lang/ghc/ghc-8.10.7/libraries/Win32/System/Win32/
H A DTime.hsc141 setSystemTime st = with st $ \c_st -> failIf_ not "setSystemTime: SetSystemTime" $
142 c_SetSystemTime c_st
161 setLocalTime st = with st $ \c_st -> failIf_ not "setLocalTime: SetLocalTime" $
162 c_SetLocalTime c_st
311 maybeWith with st $ \c_st ->
313 size <- c_GetTimeFormat locale flags c_st c_fmt nullPtr 0
316 c_GetTimeFormat locale flags c_st c_fmt (castPtr out) size
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/tests/benchdnn/lrn/
H A Dref_lrn.cpp36 const int64_t c_st = MAX2(c - half_size + 0, 0); in get_omega() local
39 for (int64_t cs = c_st; cs < c_en; ++cs) { in get_omega()
84 const int64_t c_st = MAX2(c - half_size + 0, 0); in compute_ref_bwd() local
87 for (int64_t cs = c_st; cs < c_en; ++cs) { in compute_ref_bwd()
/dports/math/onednn/oneDNN-2.5.1/tests/benchdnn/lrn/
H A Dref_lrn.cpp36 const int64_t c_st = MAX2(c - half_size + 0, 0); in get_omega() local
39 for (int64_t cs = c_st; cs < c_en; ++cs) { in get_omega()
84 const int64_t c_st = MAX2(c - half_size + 0, 0); in compute_ref_bwd() local
87 for (int64_t cs = c_st; cs < c_en; ++cs) { in compute_ref_bwd()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/src/cpu/
H A Dref_lrn.cpp120 const dim_t c_st = nstl::max(oc - half_size + 0, (dim_t)0); in execute_forward() local
123 for (dim_t c = c_st; c < c_en; ++c) { in execute_forward()
246 const dim_t c_st = nstl::max(oc - half_size + 0, (dim_t)0); in execute_backward() local
249 for (dim_t c = c_st; c < c_en; ++c) { in execute_backward()
275 const dim_t c_st = nstl::max(oc - half_size + 0, (dim_t)0); in execute_backward() local
278 for (dim_t c = c_st; c < c_en; c++) { in execute_backward()
/dports/math/onednn/oneDNN-2.5.1/src/cpu/
H A Dref_lrn.cpp120 const dim_t c_st = nstl::max(oc - half_size + 0, (dim_t)0); in execute_forward() local
123 for (dim_t c = c_st; c < c_en; ++c) { in execute_forward()
246 const dim_t c_st = nstl::max(oc - half_size + 0, (dim_t)0); in execute_backward() local
249 for (dim_t c = c_st; c < c_en; ++c) { in execute_backward()
275 const dim_t c_st = nstl::max(oc - half_size + 0, (dim_t)0); in execute_backward() local
278 for (dim_t c = c_st; c < c_en; c++) { in execute_backward()
/dports/devel/xwpe/xwpe-1.5.30a/
H A Dwe_progn.c333 if (f->ed->f[i]->c_st) in e_sc_all()
405 if (b->f->c_st->continue_column < 0) in e_sc_nw_txt()
423 out = isspace(b->bf[i+1].s[b->f->c_st->continue_column]) ? 0 : in e_sc_nw_txt()
442 if (b->f->c_st->continue_column < 0) in e_sc_txt()
452 e_scfbol(b->bf[i].len, c_sw[i], b->bf[i].s, b->f->c_st); in e_sc_txt()
465 int n_bg = -1, n_nd = strlen(f->c_st->end_comment)-1;
488 e_mk_col(b->bf[y].s, b->bf[y].len, k, frb, f->c_st, n_nd, n_bg);
498 e_mk_col(b->bf[y].s, b->bf[y].len, i, frb, f->c_st, n_nd, n_bg);
563 e_mk_col(b->bf[y].s, b->bf[y].len, i, frb, f->c_st, n_nd, n_bg);
599 f->c_st = NULL;
[all …]
/dports/math/onednn/oneDNN-2.5.1/tests/gtests/
H A Dtest_lrn_backward.cpp91 const memory::dim c_st = std::max(oc - half_size, (memory::dim)0); in check_lrn_bwd() local
94 for (memory::dim c = c_st; c < c_en; ++c) { in check_lrn_bwd()
121 const memory::dim c_st = std::max(oc - half_size, (memory::dim)0); in check_lrn_bwd() local
124 for (memory::dim c = c_st; c < c_en; c++) { in check_lrn_bwd()
/dports/www/dillo2/dillo-3.0.5/dpi/
H A Dfile.c1050 int sock_fd, c_st, st = 1; in main() local
1081 c_st = File_check_fds(10); in main()
1082 } while (c_st == 0 && !DPIBYE); in main()
1083 if (c_st < 0) { in main()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/tests/gtests/
H A Dtest_lrn_backward.cpp91 const memory::dim c_st = std::max(oc - half_size, (memory::dim)0); in check_lrn_bwd() local
94 for (memory::dim c = c_st; c < c_en; ++c) { in check_lrn_bwd()
121 const memory::dim c_st = std::max(oc - half_size, (memory::dim)0); in check_lrn_bwd() local
124 for (memory::dim c = c_st; c < c_en; c++) { in check_lrn_bwd()
/dports/cad/xcircuit/xcircuit-3.10.30/spiceparser/
H A Dnetlist_spice.h181 typedef struct c_st struct
H A Dnetlist.h79 struct c_st *spice_cap;
/dports/science/code_saturne/code_saturne-7.1.0/src/alge/
H A Dcs_balance_by_zone.c1319 cs_real_t c_st = cell_f_vol[c_id_sel] * dt[c_id_sel]* vg * v; in cs_balance_by_zone_compute() local
1323 c_st *= cpro_cp[c_id_sel]; in cs_balance_by_zone_compute()
1325 c_st *= cp0; in cs_balance_by_zone_compute()
1329 mass_o_balance += c_st; in cs_balance_by_zone_compute()
1331 mass_i_balance += c_st; in cs_balance_by_zone_compute()
/dports/lang/python-legacy/Python-2.7.18/Python/
H A Dcompile.c137 struct symtable *c_st; member
285 c.c_st = PySymtable_Build(mod, filename, c.c_future); in PyAST_Compile()
286 if (c.c_st == NULL) { in PyAST_Compile()
318 if (c->c_st) in compiler_free()
319 PySymtable_Free(c->c_st); in compiler_free()
477 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope()
/dports/lang/python27/Python-2.7.18/Python/
H A Dcompile.c137 struct symtable *c_st; member
285 c.c_st = PySymtable_Build(mod, filename, c.c_future); in PyAST_Compile()
286 if (c.c_st == NULL) { in PyAST_Compile()
318 if (c->c_st) in compiler_free()
319 PySymtable_Free(c->c_st); in compiler_free()
477 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dcompile.c137 struct symtable *c_st; member
282 c.c_st = PySymtable_Build(mod, filename, c.c_future); in PyAST_Compile()
283 if (c.c_st == NULL) { in PyAST_Compile()
315 if (c->c_st) in compiler_free()
316 PySymtable_Free(c->c_st); in compiler_free()
454 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope()
/dports/graphics/yafaray/libYafaRay-3.5.1/src/integrators/
H A Dbidirpath.cc898 color_t c_st = pd.f_y * pd.path[s].G * pd.f_z; in evalPath() local
900 color_t C_uw = y.alpha * c_st * z.alpha; in evalPath()
/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dcompile.c161 struct symtable *c_st; member
358 c.c_st = PySymtable_BuildObject(mod, filename, c.c_future); in PyAST_CompileObject()
359 if (c.c_st == NULL) { in PyAST_CompileObject()
406 if (c->c_st) in compiler_free()
407 PySymtable_Free(c->c_st); in compiler_free()
568 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope()
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dcompile.c161 struct symtable *c_st; member
358 c.c_st = PySymtable_BuildObject(mod, filename, c.c_future); in PyAST_CompileObject()
359 if (c.c_st == NULL) { in PyAST_CompileObject()
406 if (c->c_st) in compiler_free()
407 PySymtable_Free(c->c_st); in compiler_free()
568 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope()
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dcompile.c161 struct symtable *c_st; member
358 c.c_st = PySymtable_BuildObject(mod, filename, c.c_future); in PyAST_CompileObject()
359 if (c.c_st == NULL) { in PyAST_CompileObject()
406 if (c->c_st) in compiler_free()
407 PySymtable_Free(c->c_st); in compiler_free()
568 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope()

12