Home
last modified time | relevance | path

Searched refs:dsts (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/docs/examples/
DMatrix_MakeRectToRect.cpp8 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} }; in draw() local
10 for (auto dst : dsts) { in draw()
/third_party/flutter/skia/docs/examples/
DMatrix_MakeRectToRect.cpp8 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} }; in draw() local
10 for (auto dst : dsts) { in draw()
DMatrix_setRectToRect.cpp8 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} }; in draw() local
10 for (auto dst : dsts) { in draw()
/third_party/ffmpeg/libswresample/
Dswresample_internal.h193 void swri_noise_shaping_int16 (SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioDa…
194 void swri_noise_shaping_int32 (SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioDa…
195 void swri_noise_shaping_float (SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioDa…
196 void swri_noise_shaping_double(SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioDa…
Ddither_template.c43 void RENAME(swri_noise_shaping)(SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioD… in RENAME()
56 DELEM *dst = (DELEM*)dsts->ch[ch]; in RENAME()
/third_party/node/tools/gyp/tools/
Dgraphviz.py82 for src, dsts in edges.items():
83 for dst in dsts:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/
Dgraphviz.py81 for src, dsts in edges.items():
82 for dst in dsts:
/third_party/python/Tools/peg_generator/pegen/
Dsccutils.py116 graph = {src: {dst for dst in dsts if dst in scc} for src, dsts in graph.items() if src in scc}
D__main__.py143 for src, dsts in gen.first_graph.items():
/third_party/ffmpeg/libavfilter/
Dvf_mcdeint.c201 int dsts = outpic ->linesize[i]; in filter_frame() local
208 uint8_t *dstp = &outpic ->data[i][x + y*dsts]; in filter_frame()
269 outpic ->data[i][x + y*dsts] = inpic->data[i][x + y*srcs];
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DGCOV.cpp484 for (auto E : V->dsts()) { in lookForCircuit()
508 for (auto E : V->dsts()) { in lookForCircuit()
554 for (auto E : Block->dsts()) { in getLineCount()
865 for (const GCOVEdge *Edge : Block.dsts()) { in printBranchInfo()
/third_party/uboot/u-boot-2020.01/drivers/usb/gadget/hiudc3/
Dusb3_pcd.c169 uint32_t dsts; in usb3_get_device_speed() local
172 dsts = usb3_rd32(&pcd->dev_global_regs->dsts); in usb3_get_device_speed()
174 switch ((dsts >> USB3_DSTS_CONNSPD_SHIFT) & in usb3_get_device_speed()
Dusb3_hw.h1425 volatile uint32_t dsts; member
/third_party/uboot/u-boot-2020.01/drivers/usb/gadget/
Ddwc2_udc_otg_regs.h73 u32 dsts; /* Device Status */ member
Ddwc2_udc_otg_xfer_dma.c497 usb_status = (readl(&reg->dsts) & 0x6); in dwc2_udc_irq()
518 usb_status = readl(&reg->dsts); in dwc2_udc_irq()
/third_party/skia/modules/canvaskit/tests/
Dcore.spec.js273 const dsts = CanvasKit.Malloc(Float32Array, 16); constant
274 dsts.toTypedArray().set([
290 canvas.drawAtlas(atlas, srcs, dsts, paint, CanvasKit.BlendMode.Modulate, colors);
294 CanvasKit.Free(dsts);
314 const dsts = [ variable
345 canvas.drawAtlas(atlas, srcs, dsts, paint, CanvasKit.BlendMode.SrcOver, colors,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DGCOV.h361 iterator_range<EdgeIterator> dsts() const { in dsts() function