Home
last modified time | relevance | path

Searched refs:cu (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/third_party/python/Lib/sqlite3/test/
Ddbapi.py106 cu = self.cx.cursor()
107 cu.execute("create table test(id integer primary key, name text)")
108 cu.execute("insert into test(name) values (?)", ("foo",))
134 cu = self.cx.cursor()
160 cu = cx.cursor()
162 cu.execute("create table transactiontest(id integer primary key, name text)")
164 cu.execute("insert into transactiontest(name) values (?)", ("foo",))
166 cu.execute("select name from transactiontest where name=?", ["foo"])
167 row = cu.fetchone()
171 cu.execute("select name from transactiontest where name=?", ["foo"])
[all …]
Ddump.py9 self.cu = self.cx.cursor()
44 [self.cu.execute(s) for s in expected_sqls]
68 self.cu.execute(CREATE_BETA)
69 self.cu.execute(CREATE_ALPHA)
/third_party/ffmpeg/libavutil/
Dhwcontext_cuda.c53 #define CHECK_CU(x) FF_CUDA_CHECK_DL(device_ctx, cu, x)
85 CudaFunctions *cu = hwctx->internal->cuda_dl; in cuda_buffer_free() local
89 CHECK_CU(cu->cuCtxPushCurrent(hwctx->cuda_ctx)); in cuda_buffer_free()
91 CHECK_CU(cu->cuMemFree((CUdeviceptr)data)); in cuda_buffer_free()
93 CHECK_CU(cu->cuCtxPopCurrent(&dummy)); in cuda_buffer_free()
101 CudaFunctions *cu = hwctx->internal->cuda_dl; in cuda_pool_alloc() local
108 err = CHECK_CU(cu->cuCtxPushCurrent(hwctx->cuda_ctx)); in cuda_pool_alloc()
112 err = CHECK_CU(cu->cuMemAlloc(&data, size)); in cuda_pool_alloc()
118 CHECK_CU(cu->cuMemFree(data)); in cuda_pool_alloc()
123 CHECK_CU(cu->cuCtxPopCurrent(&dummy)); in cuda_pool_alloc()
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_yadif_cuda.c66 CudaFunctions *cu = s->hwctx->internal->cuda_dl; in call_kernel() local
91 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_prev, &res_desc, &tex_desc, NULL)); in call_kernel()
96 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_cur, &res_desc, &tex_desc, NULL)); in call_kernel()
101 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_next, &res_desc, &tex_desc, NULL)); in call_kernel()
105 ret = CHECK_CU(cu->cuLaunchKernel(func, in call_kernel()
112 CHECK_CU(cu->cuTexObjectDestroy(tex_prev)); in call_kernel()
114 CHECK_CU(cu->cuTexObjectDestroy(tex_cur)); in call_kernel()
116 CHECK_CU(cu->cuTexObjectDestroy(tex_next)); in call_kernel()
126 CudaFunctions *cu = s->hwctx->internal->cuda_dl; in filter() local
130 ret = CHECK_CU(cu->cuCtxPushCurrent(s->cu_ctx)); in filter()
[all …]
Dvf_overlay_cuda.c120 CudaFunctions *cu = ctx->hwctx->internal->cuda_dl; in overlay_cuda_call_kernel() local
131 return CHECK_CU(cu->cuLaunchKernel( in overlay_cuda_call_kernel()
149 CudaFunctions *cu = ctx->hwctx->internal->cuda_dl; in overlay_cuda_blend() local
175 ret = CHECK_CU(cu->cuCtxPushCurrent(cuda_ctx)); in overlay_cuda_blend()
224 CHECK_CU(cu->cuCtxPopCurrent(&dummy)); in overlay_cuda_blend()
228 CHECK_CU(cu->cuCtxPopCurrent(&dummy)); in overlay_cuda_blend()
255 CudaFunctions *cu = ctx->hwctx->internal->cuda_dl; in overlay_cuda_uninit() local
256 CHECK_CU(cu->cuCtxPushCurrent(ctx->cu_ctx)); in overlay_cuda_uninit()
257 CHECK_CU(cu->cuModuleUnload(ctx->cu_module)); in overlay_cuda_uninit()
258 CHECK_CU(cu->cuCtxPopCurrent(&dummy)); in overlay_cuda_uninit()
[all …]
Dvf_thumbnail_cuda.c162 CudaFunctions *cu = s->hwctx->internal->cuda_dl; in thumbnail_kernel() local
183 ret = CHECK_CU(cu->cuTexObjectCreate(&tex, &res_desc, &tex_desc, NULL)); in thumbnail_kernel()
187 ret = CHECK_CU(cu->cuLaunchKernel(func, in thumbnail_kernel()
192 CHECK_CU(cu->cuTexObjectDestroy(tex)); in thumbnail_kernel()
251 CudaFunctions *cu = s->hwctx->internal->cuda_dl; in filter_frame() local
262 ret = CHECK_CU(cu->cuCtxPushCurrent(s->hwctx->cuda_ctx)); in filter_frame()
266 CHECK_CU(cu->cuMemsetD8Async(s->data, 0, HIST_SIZE * sizeof(int), s->cu_stream)); in filter_frame()
279 ret = CHECK_CU(cu->cuMemcpy2DAsync(&cpy, s->cu_stream)); in filter_frame()
291 CHECK_CU(cu->cuCtxPopCurrent(&dummy)); in filter_frame()
307 CudaFunctions *cu = s->hwctx->internal->cuda_dl; in uninit() local
[all …]
Dvf_scale_cuda.c139 CudaFunctions *cu = s->hwctx->internal->cuda_dl; in cudascale_uninit() local
142 CHECK_CU(cu->cuCtxPushCurrent(s->hwctx->cuda_ctx)); in cudascale_uninit()
143 CHECK_CU(cu->cuModuleUnload(s->cu_module)); in cudascale_uninit()
145 CHECK_CU(cu->cuCtxPopCurrent(&dummy)); in cudascale_uninit()
273 CudaFunctions *cu = device_hwctx->internal->cuda_dl; in cudascale_config_props() local
318 ret = CHECK_CU(cu->cuCtxPushCurrent(cuda_ctx)); in cudascale_config_props()
322 ret = CHECK_CU(cu->cuModuleLoadData(&s->cu_module, scaler_ptx)); in cudascale_config_props()
327 CHECK_CU(cu->cuModuleGetFunction(&s->cu_func_uchar, s->cu_module, buf)); in cudascale_config_props()
332 CHECK_CU(cu->cuModuleGetFunction(&s->cu_func_uchar2, s->cu_module, buf)); in cudascale_config_props()
337 CHECK_CU(cu->cuModuleGetFunction(&s->cu_func_uchar4, s->cu_module, buf)); in cudascale_config_props()
[all …]
Dvf_chromanr.c137 const int cu = in_uptr[x]; \
139 int su = cu; \
153 if (FFABS(cu - U) + FFABS(cv - V) + FFABS(cy - Y) < thres && \
154 FFABS(cu - U) < thres_u && FFABS(cv - V) < thres_v && \
/third_party/python/Lib/sqlite3/
Ddump.py19 cu = connection.cursor()
30 schema_res = cu.execute(q)
50 res = cu.execute('PRAGMA table_info("{0}")'.format(table_name_ident))
55 query_res = cu.execute(q)
66 schema_res = cu.execute(q)
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/
Den_CA.txt426 dnam{"cu. feet"}
427 one{"{0} cu. ft."}
428 other{"{0} cu. ft."}
431 dnam{"cu. inches"}
432 one{"{0} cu. in."}
433 other{"{0} cu. in."}
436 dnam{"cu. mi."}
437 one{"{0} cu. mi."}
438 other{"{0} cu. mi."}
441 dnam{"cu. yards"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/unit/
Den_CA.txt489 dnam{"cu. feet"}
490 one{"{0} cu. ft."}
491 other{"{0} cu. ft."}
494 dnam{"cu. inches"}
495 one{"{0} cu. in."}
496 other{"{0} cu. in."}
499 dnam{"cu. mi."}
500 one{"{0} cu. mi."}
501 other{"{0} cu. mi."}
504 dnam{"cu. yards"}
[all …]
/third_party/icu/icu4c/source/data/unit/
Den_CA.txt489 dnam{"cu. feet"}
490 one{"{0} cu. ft."}
491 other{"{0} cu. ft."}
494 dnam{"cu. inches"}
495 one{"{0} cu. in."}
496 other{"{0} cu. in."}
499 dnam{"cu. mi."}
500 one{"{0} cu. mi."}
501 other{"{0} cu. mi."}
504 dnam{"cu. yards"}
[all …]
/third_party/icu/icu4c/source/test/cintltst/
Dutf8tst.c1249 UChar32 cu, cs, cl; in TestSurrogates() local
1256 U8_NEXT_UNSAFE(b, j, cu); in TestSurrogates()
1267 if(cu!=cp[k]) { in TestSurrogates()
1268 log_err("U8_NEXT_UNSAFE(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cu, (long)cp[k]); in TestSurrogates()
1272 if(U_IS_SURROGATE(cu) ? cs>=0 : cs!=cu) { in TestSurrogates()
1273 log_err("U8_NEXT(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cs, (long)cu); in TestSurrogates()
1277 if(cl!=cu) { in TestSurrogates()
1278 log_err("L8_NEXT(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cl, (long)cu); in TestSurrogates()
1282 if(U_IS_SURROGATE(cu) ? is!=(i+1) : is!=iu) { in TestSurrogates()
1297 U8_PREV_UNSAFE(b, j, cu); in TestSurrogates()
[all …]
/third_party/boost/boost/lockfree/detail/
Dtagged_ptr_ptrcompression.hpp49 cast_unit cu; in extract_tag() local
50 cu.value = i; in extract_tag()
51 return cu.tag[tag_index]; in extract_tag()
/third_party/boost/libs/numeric/odeint/doc/
Dexamples_table.qbk96 [[[github_link examples/thrust/phase_oscillator_ensemble.cu thrust/phase_oscillator_ensemble.cu]]
99 [[[github_link examples/thrust/phase_oscillator_chain.cu thrust/phase_oscillator_chain.cu]]
102 [[[github_link examples/thrust/lorenz_parameters.cu thrust/lorenz_parameters.cu]]
106 [[[github_link examples/thrust/relaxation.cu thrust/relaxation.cu]]
/third_party/boost/libs/fiber/examples/cuda/
DMakefile14 single_stream.o:single_stream.cu
20 multiple_streams.o:multiple_streams.cu
/third_party/ffmpeg/libavcodec/
Dhevc_cabac.c717 if (s->HEVClc->cu.pred_mode == MODE_INTRA) // 0 in ff_hevc_part_mode_decode()
1076 if (!lc->cu.cu_transquant_bypass_flag) { in ff_hevc_hls_residual_coding()
1137 int matrix_id = lc->cu.pred_mode != MODE_INTRA; in ff_hevc_hls_residual_coding()
1152 if (lc->cu.pred_mode == MODE_INTER && s->ps.sps->explicit_rdpcm_enabled_flag && in ff_hevc_hls_residual_coding()
1153 (transform_skip_flag || lc->cu.cu_transquant_bypass_flag)) { in ff_hevc_hls_residual_coding()
1284 (transform_skip_flag || lc->cu.cu_transquant_bypass_flag)) { in ff_hevc_hls_residual_coding()
1325 (transform_skip_flag || lc->cu.cu_transquant_bypass_flag)) { in ff_hevc_hls_residual_coding()
1370 if (!transform_skip_flag && !lc->cu.cu_transquant_bypass_flag) in ff_hevc_hls_residual_coding()
1396 if (lc->cu.cu_transquant_bypass_flag || in ff_hevc_hls_residual_coding()
1397 (lc->cu.pred_mode == MODE_INTRA && in ff_hevc_hls_residual_coding()
[all …]
Dcavs.c122 memcpy(&h->top_border_u[h->mbx * 10 + 1], h->cu + 7 * h->c_stride, 8); in ff_cavs_filter()
127 h->left_border_u[i + 1] = *(h->cu + 7 + i * h->c_stride); in ff_cavs_filter()
156 h->cdsp.cavs_filter_cv(h->cu, h->c_stride, alpha, beta, tc, bs[0], bs[1]); in ff_cavs_filter()
170 h->cdsp.cavs_filter_ch(h->cu, h->c_stride, alpha, beta, tc, bs[4], bs[5]); in ff_cavs_filter()
499 mc_part_std(h, 8, 0, h->cy, h->cu, h->cv, 0, 0, in ff_cavs_inter()
506 mc_part_std(h, 4, 0, h->cy, h->cu, h->cv, 0, 0, in ff_cavs_inter()
512 mc_part_std(h, 4, 0, h->cy, h->cu, h->cv, 4, 0, in ff_cavs_inter()
518 mc_part_std(h, 4, 0, h->cy, h->cu, h->cv, 0, 4, in ff_cavs_inter()
524 mc_part_std(h, 4, 0, h->cy, h->cu, h->cv, 4, 4, in ff_cavs_inter()
686 h->cu += 8; in ff_cavs_next_mb()
[all …]
/third_party/spirv-tools/test/opt/
Dinline_test.cpp3516 %cu = OpExtInst %void %ext DebugCompilationUnit 1 4 %src HLSL
3521 %dbg_main = OpExtInst %void %ext DebugFunction %main_name %main_ty %src 5 1 %cu %main_name FlagIsPr…
3522 %dbg_add = OpExtInst %void %ext DebugFunction %add_name %add_ty %src 1 1 %cu %add_name FlagIsProtec…
3608 %cu = OpExtInst %void %ext DebugCompilationUnit 1 4 %src HLSL
3613 %dbg_main = OpExtInst %void %ext DebugFunction %main_name %main_ty %src 5 1 %cu %main_name FlagIsPr…
3614 %dbg_add = OpExtInst %void %ext DebugFunction %add_name %add_ty %src 1 1 %cu %add_name FlagIsProtec…
3701 %cu = OpExtInst %void %ext DebugCompilationUnit 1 4 %src HLSL
3706 %dbg_main = OpExtInst %void %ext DebugFunction %main_name %main_ty %src 5 1 %cu %main_name FlagIsPr…
3707 %dbg_add = OpExtInst %void %ext DebugFunction %add_name %add_ty %src 1 1 %cu %add_name FlagIsProtec…
3794 %cu = OpExtInst %void %ext DebugCompilationUnit 1 4 %src HLSL
[all …]
/third_party/skia/tests/
DPathOpsCubicConicIntersectionTest.cpp46 const CubicPts& cu = cubicConicTests[index].cubic; in cubicConicIntersection() local
48 cubic.debugSet(cu.fPts); in cubicConicIntersection()
/third_party/flutter/skia/tests/
DPathOpsCubicConicIntersectionTest.cpp46 const CubicPts& cu = cubicConicTests[index].cubic; in cubicConicIntersection() local
48 cubic.debugSet(cu.fPts); in cubicConicIntersection()
/third_party/boost/boost/type_traits/detail/
Dcommon_type_impl.hpp45 BOOST_STATIC_CONSTANT( bool, cu = boost::is_class<U>::value || boost::is_union<U>::value );
47 BOOST_STATIC_CONSTANT( bool, value = ct || cu );
/third_party/icu/icu4c/source/data/lang/
Dro.txt8 colAlternate{"sortare cu ignorarea simbolurilor"}
118 cu{"slavonă"}
718 search{"căutare cu scop general"}
731 h11{"sistem cu 12 ore (0–11)"}
732 h12{"sistem cu 12 ore (1–12)"}
733 h23{"sistem cu 24 de ore (0–23)"}
734 h24{"sistem cu 24 de ore (1–24)"}
754 armnlow{"numerale armenești cu minuscule"}
759 fullwide{"cifre cu lățimea întreagă"}
762 greklow{"numerale grecești cu minuscule"}
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/
Dro.txt7 colAlternate{"Ordonare cu simbolurile ignorate"}
116 cu{"slavonă"}
704 search{"căutare cu scop general"}
717 h11{"sistem cu 12 ore (0–11)"}
718 h12{"sistem cu 12 ore (1–12)"}
719 h23{"sistem cu 24 de ore (0–23)"}
720 h24{"sistem cu 24 de ore (1–24)"}
740 armnlow{"numerale armenești cu minuscule"}
745 fullwide{"cifre cu lățimea întreagă"}
748 greklow{"numerale grecești cu minuscule"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/lang/
Dro.txt8 colAlternate{"sortare cu ignorarea simbolurilor"}
118 cu{"slavonă"}
718 search{"căutare cu scop general"}
731 h11{"sistem cu 12 ore (0–11)"}
732 h12{"sistem cu 12 ore (1–12)"}
733 h23{"sistem cu 24 de ore (0–23)"}
734 h24{"sistem cu 24 de ore (1–24)"}
754 armnlow{"numerale armenești cu minuscule"}
759 fullwide{"cifre cu lățimea întreagă"}
762 greklow{"numerale grecești cu minuscule"}
[all …]

12345678910>>...23