Home
last modified time | relevance | path

Searched refs:direct (Results 401 - 425 of 689) sorted by relevance

1...<<11121314151617181920>>...28

/third_party/ffmpeg/libavformat/
H A Davio.h270 int direct; member
650 * Use direct mode.
H A Daviobuf.c100 s->direct = 0; in ffio_init_context()
234 if (s->direct && !s->update_checksum) { in avio_write()
302 if ((!s->direct || !s->seek) && in avio_seek()
309 (!s->direct || !s->seek) && in avio_seek()
649 if((s->direct || size > s->buffer_size) && !s->update_checksum && s->read_packet) { in avio_read()
994 (*s)->direct = h->flags & AVIO_FLAG_DIRECT; in ffio_fdopen()
/third_party/libuv/test/
H A Dtest-fs-copyfile.c31 # include <direct.h>
/third_party/ninja/src/
H A Dtest.cc16 #include <direct.h> // Has to be before util.h is included.
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/
H A Dutf7.js28 // Non-direct chars are encoded as "+<base64>-"; single "+" char is encoded as "+-".
65 if (!inBase64) { // We're in direct mode.
66 // Write direct chars until '+'
68 res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars.
92 res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars.
126 // * Base64 must not be used to represent direct characters.
166 buf[bufIdx++] = minusChar; // Write '-', then go to direct mode.
171 buf[bufIdx++] = uChar; // Write direct character
177 } else { // Non-direct character
208 buf[bufIdx++] = minusChar; // Write '-', then go to direct mod
[all...]
/third_party/mesa3d/src/gtest/src/
H A Dgtest-filepath.cc39 # include <direct.h>
/third_party/python/Python/
H A Ddynload_win.c9 #include <direct.h>
48 both PE32 and PE32+. It only worries about the direct import table and
/kernel/linux/linux-5.10/drivers/net/wimax/i2400m/
H A Dfw.c640 * @direct: bootrom write mode
645 unsigned int direct, unsigned int do_csum) in i2400m_download_chunk()
657 "direct %u do_csum %u)\n", i2400m, chunk, __chunk_len, in i2400m_download_chunk()
658 addr, direct, do_csum); in i2400m_download_chunk()
665 __chunk_len & 0xf ? 0 : direct); in i2400m_download_chunk()
673 "direct %u do_csum %u) = %d\n", i2400m, chunk, __chunk_len, in i2400m_download_chunk()
674 addr, direct, do_csum, ret); in i2400m_download_chunk()
643 i2400m_download_chunk(struct i2400m *i2400m, const void *chunk, size_t __chunk_len, unsigned long addr, unsigned int direct, unsigned int do_csum) i2400m_download_chunk() argument
/third_party/ffmpeg/libavfilter/
H A Dvf_dctdnoiz.c720 int direct, plane; in filter_frame() local
724 direct = 1; in filter_frame()
727 direct = 0; in filter_frame()
750 if (!direct) { in filter_frame()
H A Dafir_template.c248 static void fn(direct)(const ftype *in, const ctype *ir, int len, ftype *out) in direct() function
316 fn(direct)(src, coeff, nb_samples, dst); in fir_quantum()
/third_party/skia/src/gpu/dawn/
H A DGrDawnGpu.cpp112 const GrContextOptions& options, GrDirectContext* direct) { in Make()
117 return sk_sp<GrGpu>(new GrDawnGpu(direct, options, device)); in Make()
122 GrDawnGpu::GrDawnGpu(GrDirectContext* direct, const GrContextOptions& options, in GrDawnGpu() argument
124 : INHERITED(direct) in GrDawnGpu()
111 Make(const wgpu::Device& device, const GrContextOptions& options, GrDirectContext* direct) Make() argument
/kernel/linux/linux-5.10/arch/x86/kvm/
H A Dtrace.h1249 TP_PROTO(int vcpu_id, int timer_index, int direct, int msg_send_result),
1250 TP_ARGS(vcpu_id, timer_index, direct, msg_send_result),
1255 __field(int, direct)
1262 __entry->direct = direct;
1266 TP_printk("vcpu_id %d timer %d direct %d send result %d",
1268 __entry->direct, __entry->msg_send_result)
/kernel/linux/linux-5.10/drivers/accessibility/speakup/
H A Dmain.c427 struct var_t *direct = spk_get_var(DIRECT); in speak_char() local
429 if (ch >= 0x100 || (direct && direct->u.n.value)) { in speak_char()
708 struct var_t *direct = spk_get_var(DIRECT); in spell_word() local
730 if (ch >= 0x100 || (direct && direct->u.n.value)) { in spell_word()
/kernel/linux/linux-6.6/arch/x86/kvm/
H A Dtrace.h1332 TP_PROTO(int vcpu_id, int timer_index, int direct, int msg_send_result),
1333 TP_ARGS(vcpu_id, timer_index, direct, msg_send_result),
1338 __field(int, direct)
1345 __entry->direct = direct;
1349 TP_printk("vcpu_id %d timer %d direct %d send result %d",
1351 __entry->direct, __entry->msg_send_result)
/third_party/skia/src/gpu/v1/
H A DSurfaceDrawContext.cpp418 // the direct draw APIs (drawGlyphs, etc.). There is no need to create a GrTextBlob just in drawGlyphRunList()
1527 auto direct = fContext->asDirectContext(); in waitOnSemaphores() local
1528 if (!direct) { in waitOnSemaphores()
1532 auto resourceProvider = direct->priv().resourceProvider(); in waitOnSemaphores()
2008 auto direct = fContext->priv().asDirectContext(); in addDrawOp() local
2009 if (direct && op) { in addDrawOp()
2010 op->setGrOpTag(direct->getCurrentGrResourceTag()); in addDrawOp()
/third_party/libwebsockets/lib/jose/jwe/
H A Djwe.c209 lws_jwa_concat_kdf(struct lws_jwe *jwe, int direct, uint8_t *out, in lws_jwa_concat_kdf() argument
238 aid = direct ? jwe->jose.enc_alg->alg : jwe->jose.alg->alg; in lws_jwa_concat_kdf()
/third_party/skia/tools/fm/
H A Dfm.cpp150 auto direct = GrAsDirectContext(canvas->recordingContext()); in init()
153 switch (gm->gpuSetup(direct, canvas, &err)) { in init()
/third_party/skia/gm/
H A Ddrawimageset.cpp298 DrawResult onGpuSetup(GrDirectContext* direct, SkString*) override {
313 kAlpha_8_SkColorType, alphaSpace, direct);
/kernel/linux/linux-6.6/fs/btrfs/
H A Dbackref.c151 struct preftree direct; /* BTRFS_SHARED_[DATA|BLOCK]_REF_KEY */ member
159 * The share_count tracks prelim_refs (direct and indirect) having a
421 /* direct refs use root == 0, key == NULL */
427 return add_prelim_ref(fs_info, &preftrees->direct, 0, NULL, level, in add_direct_ref()
448 struct rb_node **p = &preftrees->direct.root.rb_root.rb_node; in is_shared_data_backref()
720 * We maintain three separate rbtrees: one for direct refs, one for
729 * direct tree (merging there too).
762 "BUG: direct ref found in indirect tree")) { in resolve_indirect_refs()
786 prelim_ref_insert(ctx->fs_info, &preftrees->direct, ref, in resolve_indirect_refs()
815 prelim_ref_insert(ctx->fs_info, &preftrees->direct, in resolve_indirect_refs()
[all...]
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/gpmi-nand/
H A Dgpmi-nand.c1487 * 4) "Raw" read operations return a direct view of the physical bytes in the
2168 struct gpmi_nand_data *this, void *buf, int raw_len, bool *direct) in gpmi_chain_data_read()
2181 *direct = prepare_data_dma(this, buf, raw_len, &transfer->sgl, in gpmi_chain_data_read()
2272 bool direct = false; in gpmi_nfc_exec_op() local
2347 &direct); in gpmi_nfc_exec_op()
2422 if (!ret && buf_read && !direct) in gpmi_nfc_exec_op()
2167 gpmi_chain_data_read( struct gpmi_nand_data *this, void *buf, int raw_len, bool *direct) gpmi_chain_data_read() argument
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/gpmi-nand/
H A Dgpmi-nand.c1709 * 4) "Raw" read operations return a direct view of the physical bytes in the
2390 struct gpmi_nand_data *this, void *buf, int raw_len, bool *direct) in gpmi_chain_data_read()
2403 *direct = prepare_data_dma(this, buf, raw_len, &transfer->sgl, in gpmi_chain_data_read()
2494 bool direct = false; in gpmi_nfc_exec_op() local
2567 &direct); in gpmi_nfc_exec_op()
2642 if (!ret && buf_read && !direct) in gpmi_nfc_exec_op()
2389 gpmi_chain_data_read( struct gpmi_nand_data *this, void *buf, int raw_len, bool *direct) gpmi_chain_data_read() argument
/third_party/gn/src/gn/
H A Dtarget_unittest.cc65 Config direct(setup.settings(), Label(SourceDir("//foo/"), "direct")); in TEST_F()
66 direct.visibility().SetPublic(); in TEST_F()
67 ASSERT_TRUE(direct.OnResolved(&err)); in TEST_F()
68 c.public_configs().push_back(LabelConfigPair(&direct)); in TEST_F()
77 EXPECT_EQ(&direct, b.configs()[1].ptr); in TEST_F()
86 // Making an an alternate A and B with B forwarding the direct dependents. in TEST_F()
/third_party/ltp/tools/sparse/sparse-src/
H A Dcompile-i386.c2067 struct symbol *direct; in x86_call_expression() local
2101 direct = NULL; in x86_call_expression()
2106 direct = sym; in x86_call_expression()
2109 if (direct) { in x86_call_expression()
2112 direct_stor->sym = direct; in x86_call_expression()
2375 // None of these should exist as direct expressions: they are only in x86_expression()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/
H A Drs_interfaces.h294 bool SetAncoForceDoDirect(bool direct);
/kernel/linux/linux-5.10/arch/x86/mm/
H A Dmem_encrypt.c15 #include <linux/dma-direct.h>
363 /* Override for DMA direct allocation check - ARCH_HAS_FORCE_DMA_UNENCRYPTED */

Completed in 44 milliseconds

1...<<11121314151617181920>>...28