Home
last modified time | relevance | path

Searched refs:direct (Results 101 - 125 of 297) sorted by relevance

12345678910>>...12

/third_party/skia/tools/
H A DDDLPromiseImageHelper.h36 PromiseImageCallbackContext(GrDirectContext* direct, GrBackendFormat backendFormat) in PromiseImageCallbackContext() argument
37 : fContext(direct) in PromiseImageCallbackContext()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DUtf8Test.java194 // match the message. On Android, a direct ByteBuffer will have hasArray() being true and in assertEncoding_insufficientSpace()
209 String message, int length, boolean direct, Utf8.Processor processor) { in encodeToByteBuffer()
210 ByteBuffer buffer = direct ? ByteBuffer.allocateDirect(length) : ByteBuffer.allocate(length); in encodeToByteBuffer()
208 encodeToByteBuffer( String message, int length, boolean direct, Utf8.Processor processor) encodeToByteBuffer() argument
/third_party/icu/icu4c/source/samples/udata/
H A Dwriter.c32 #include <direct.h>
H A Dreader.c32 #include <direct.h>
/third_party/skia/third_party/externals/icu/source/samples/udata/
H A Dwriter.c32 #include <direct.h>
H A Dreader.c32 #include <direct.h>
/third_party/gn/src/gn/
H A Dninja_rust_binary_target_writer_unittest.cc82 // dependencies can be accessible if they are in the public_deps of a direct
83 // dependency, or part of a chain of public_deps from a direct dependency. Any
218 Target rlib(setup.settings(), Label(SourceDir("//foo/"), "direct")); in TEST_F()
222 rlib.sources().push_back(SourceFile("//foo/direct.rs")); in TEST_F()
226 rlib.rust_values().crate_name() = "direct"; in TEST_F()
268 " externs = --extern direct=obj/foo/libdirect.rlib " in TEST_F()
428 Target another_dylib(setup.settings(), Label(SourceDir("//foo/"), "direct")); in TEST_F()
432 another_dylib.sources().push_back(SourceFile("//foo/direct.rs")); in TEST_F()
437 another_dylib.rust_values().crate_name() = "direct"; in TEST_F()
478 " externs = --extern direct in TEST_F()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvc1_block.c315 int direct, int mode) in vc1_b_mc()
317 if (direct) { in vc1_b_mc()
1867 int skipped, direct; in vc1_decode_b_mb() local
1875 direct = get_bits1(gb); in vc1_decode_b_mb()
1877 direct = v->direct_mb_plane[mb_pos]; in vc1_decode_b_mb()
1890 if (!direct) { in vc1_decode_b_mb()
1915 if (direct) in vc1_decode_b_mb()
1917 ff_vc1_pred_b_mv(v, dmv_x, dmv_y, direct, bmvtype); in vc1_decode_b_mb()
1918 vc1_b_mc(v, dmv_x, dmv_y, direct, bmvtype); in vc1_decode_b_mb()
1921 if (direct) { in vc1_decode_b_mb()
314 vc1_b_mc(VC1Context *v, int dmv_x[2], int dmv_y[2], int direct, int mode) vc1_b_mc() argument
2193 int skipped, direct, twomv = 0; vc1_decode_b_mb_intfr() local
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dgzwrite.c31 if (!state->direct) {
59 if (!state->direct) {
71 reset to start a new gzip stream. If gz->direct is true, then simply write
86 if (state->direct) {
656 if (!state->direct) {
/third_party/skia/third_party/externals/zlib/
H A Dgzwrite.c31 if (!state->direct) {
59 if (!state->direct) {
71 reset to start a new gzip stream. If gz->direct is true, then simply write
86 if (state->direct) {
653 if (!state->direct) {
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/decoder/
H A Ddecoder.h67 int32_t SetPortBufferMode(DirectionType direct, AllocateBufferMode mode, BufferType type);
H A Ddecoder.cpp176 int32_t Decoder::SetPortBufferMode(DirectionType direct, AllocateBufferMode mode, BufferType type) in SetPortBufferMode() argument
178 int32_t ret = CodecSetPortMode(codecHandle_, direct, mode, type); in SetPortBufferMode()
/third_party/curl/src/
H A Dtool_dirhie.c29 # include <direct.h>
/third_party/libsnd/tests/
H A Dwin32_ordinal_test.c35 #include <direct.h>
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-jwe.h163 lws_jwa_concat_kdf(struct lws_jwe *jwe, int direct,
/third_party/ninja/src/
H A Dmanifest_parser_perftest.cc27 #include <direct.h>
/third_party/libwebsockets/win32port/zlib/
H A Dgzguts.h103 int direct; /* true if last read direct, false if gzip */ member
H A Dgzread.c95 if there is no gzip header and direct copying will be performed, or it will
97 that the next available input data is the raw deflate stream. If direct
200 state->direct = 0;
221 state->direct = 1;
290 state->direct unchanged to remember how) */
622 /* return 1 if reading direct, 0 if decompressing a gzip stream */
623 return state->direct;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
H A Dfunctionsglx_typedefs.h25 Bool direct);
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeDirectoryIterator.cpp28 # include <direct.h> /* _chdir() */
/third_party/skia/src/image/
H A DSkImage.cpp182 sk_sp<SkImage> SkImage::makeSubset(const SkIRect& subset, GrDirectContext* direct) const { in makeSubset()
195 if (myContext && !myContext->priv().matches(direct)) { in makeSubset()
205 return as_IB(this)->onMakeSubset(subset, direct); in makeSubset()
580 sk_sp<SkImage> SkImage::makeColorSpace(sk_sp<SkColorSpace> target, GrDirectContext* direct) const { in makeColorSpace()
581 return this->makeColorTypeAndColorSpace(this->colorType(), std::move(target), direct); in makeColorSpace()
/foundation/arkui/ui_lite/frameworks/components/
H A Dui_picker.cpp461 void UIPicker::SetDirect(UITextLanguageDirect direct) in SetDirect() argument
463 if (direct == direct_) { in SetDirect()
466 direct_ = direct; in SetDirect()
/third_party/ffmpeg/libavfilter/
H A Dvf_vignette.c202 unsigned x, y, direct = 0; in filter_frame() local
209 direct = 1; in filter_frame()
278 if (!direct) in filter_frame()
/third_party/mesa3d/include/GL/
H A Dglx.h186 GLXContext shareList, Bool direct );
269 Bool direct );
297 typedef GLXContext (* PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct);
/third_party/skia/tools/gpu/
H A DYUVUtils.cpp296 if (auto direct = rContext->asDirectContext()) { in ensureYUVImage()
301 direct, in ensureYUVImage()
321 direct, in ensureYUVImage()

Completed in 16 milliseconds

12345678910>>...12