/kernel/linux/linux-6.6/net/openvswitch/ |
H A D | flow.c | 727 key->tp.dst = tcp->dest; in key_extract_l3l4() 737 key->tp.dst = udp->dest; in key_extract_l3l4() 745 key->tp.dst = sctp->dest; in key_extract_l3l4() 851 key->tp.dst = tcp->dest; in key_extract_l3l4() 860 key->tp.dst = udp->dest; in key_extract_l3l4() 868 key->tp.dst = sctp->dest; in key_extract_l3l4()
|
/third_party/ffmpeg/libavcodec/ |
H A D | flashsv2enc.c | 469 static int write_pixel_15_7(Palette * palette, uint8_t * dest, const uint8_t * src, in write_pixel_15_7() argument 478 dest[0] = c7; in write_pixel_15_7() 481 dest[0] = 0x80 | (c15 >> 8); in write_pixel_15_7() 482 dest[1] = c15 & 0xff; in write_pixel_15_7() 545 static inline int encode_15_7_sl(Palette * palette, uint8_t * dest, in encode_15_7_sl() argument 550 len += write_pixel_15_7(palette, dest + len, src + 3 * x, dist); in encode_15_7_sl()
|
H A D | svq3.c | 432 uint8_t *src, *dest; in svq3_mc_dir_part() local 449 dest = s->cur_pic->f->data[0] + x + y * linesize; in svq3_mc_dir_part() 461 : s->tdsp.put_tpel_pixels_tab)[dxy](dest, src, linesize, in svq3_mc_dir_part() 465 : s->hdsp.put_pixels_tab)[blocksize][dxy](dest, src, linesize, in svq3_mc_dir_part() 476 dest = s->cur_pic->f->data[i] + (x >> 1) + (y >> 1) * uvlinesize; in svq3_mc_dir_part() 489 : s->tdsp.put_tpel_pixels_tab)[dxy](dest, src, in svq3_mc_dir_part() 494 : s->hdsp.put_pixels_tab)[blocksize][dxy](dest, src, in svq3_mc_dir_part() 695 uint8_t *dest[2] = { dest_cb, dest_cr }; in hl_decode_mb() local 703 uint8_t *const ptr = dest[j - 1] + block_offset[i]; in hl_decode_mb()
|
/third_party/ffmpeg/libavcodec/mips/ |
H A D | vc1dsp_msa.c | 140 void ff_vc1_inv_trans_4x8_msa(uint8_t *dest, ptrdiff_t linesize, int16_t *block) in ff_vc1_inv_trans_4x8_msa() argument 204 LD_SW8(dest, linesize, dst0, dst1, dst2, dst3, dst4, dst5, dst6, dst7); in ff_vc1_inv_trans_4x8_msa() 228 ST_W8(in0, in1, 0, 1, 2, 3, 0, 1, 2, 3, dest, linesize); in ff_vc1_inv_trans_4x8_msa() 231 void ff_vc1_inv_trans_8x4_msa(uint8_t *dest, ptrdiff_t linesize, int16_t *block) in ff_vc1_inv_trans_8x4_msa() argument 279 LD_SW4(dest, linesize, dst0, dst1, dst2, dst3); in ff_vc1_inv_trans_8x4_msa() 310 ST_D4(in0, in1, 0, 1, 0, 1, dest, linesize); in ff_vc1_inv_trans_8x4_msa()
|
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | h264dsp.c | 207 #define ALTIVEC_STORE_SUM_CLIP(dest, idctv, perm_ldv, perm_stv, sel) { \ 209 dstv_load(dest); \ 215 dest_unligned_store(dest);\ 368 static void h264_idct_add8_altivec(uint8_t **dest, const int *block_offset, in h264_idct_add8_altivec() argument 376 h264_idct_add_altivec(dest[j-1] + block_offset[i], block + i*16, stride); in h264_idct_add8_altivec() 378 h264_idct_dc_add_altivec(dest[j-1] + block_offset[i], block + i*16, stride); in h264_idct_add8_altivec()
|
/third_party/curl/lib/ |
H A D | urlapi.c | 614 char dest[16]; /* fits a binary IPv6 address */ in ipv6_parse() local 617 if(1 != Curl_inet_pton(AF_INET6, hostname, dest)) in ipv6_parse() 621 if(Curl_inet_ntop(AF_INET6, dest, norm, sizeof(norm)) && in ipv6_parse() 1383 #define DUP(dest, src, name) \ 1386 dest->name = strdup(src->name); \ 1387 if(!dest->name) \
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | ucsdetst.c | 57 char *dest, *destLimit = buffer + sizeof(buffer); in preflight() local 62 dest = buffer; in preflight() 64 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &status); in preflight() 65 result += (int32_t) (dest - buffer); in preflight() 78 char *dest = bytes, *destLimit = bytes + byteCount + 1; in extractBytes() local 80 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &status); in extractBytes()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_meta_blit2d.c | 457 nir_ssa_def *tex_deref = &nir_build_deref_var(b, sampler)->dest.ssa; in build_nir_texel_fetch() 476 nir_ssa_dest_init(&tex->instr, &tex->dest, 4, 32, "tex"); in build_nir_texel_fetch() 479 return &tex->dest.ssa; in build_nir_texel_fetch() 499 nir_ssa_def *tex_deref = &nir_build_deref_var(b, sampler)->dest.ssa; in build_nir_buffer_fetch() 512 nir_ssa_dest_init(&tex->instr, &tex->dest, 4, 32, "tex"); in build_nir_buffer_fetch() 515 return &tex->dest.ssa; in build_nir_buffer_fetch()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_cmd.c | 1058 struct pipe_surface *dest, // IN in SVGA3D_BeginSurfaceCopy() 1072 surface_to_surfaceid(swc, dest, &cmd->dest, SVGA_RELOC_WRITE); in SVGA3D_BeginSurfaceCopy() 1101 struct pipe_surface *dest, // IN in SVGA3D_SurfaceStretchBlt() 1115 surface_to_surfaceid(swc, dest, &cmd->dest, SVGA_RELOC_WRITE); in SVGA3D_SurfaceStretchBlt() 1056 SVGA3D_BeginSurfaceCopy(struct svga_winsys_context *swc, struct pipe_surface *src, struct pipe_surface *dest, SVGA3dCopyBox **boxes, uint32 numBoxes) SVGA3D_BeginSurfaceCopy() argument 1099 SVGA3D_SurfaceStretchBlt(struct svga_winsys_context *swc, struct pipe_surface *src, struct pipe_surface *dest, SVGA3dBox *boxSrc, SVGA3dBox *boxDest, SVGA3dStretchBltMode mode) SVGA3D_SurfaceStretchBlt() argument
|
/third_party/node/deps/v8/tools/mb/ |
H A D | mb.py | 137 dest='isolate_map_files') 235 subp.add_argument('-j', '--jobs', dest='jobs', type=int, 237 subp.add_argument('--no-build', dest='build', default=True, 246 dest='dimensions', metavar='FOO bar', 249 dest='default_dimensions', default=True, 276 subp.add_argument(nargs='?', action='store', dest='subcommand',
|
/third_party/lwip/src/netif/ppp/ |
H A D | pppoe.c | 735 MEMCPY(ðhdr->dest.addr, &sc->sc_dest.addr, sizeof(ethhdr->dest.addr)); in pppoe_output() 1031 pppoe_send_padt(struct netif *outgoing_if, u_int session, const u8_t *dest) in pppoe_send_padt() argument 1052 MEMCPY(ðhdr->dest.addr, dest, sizeof(ethhdr->dest.addr)); in pppoe_send_padt()
|
/third_party/python/Modules/_decimal/tests/ |
H A D | deccheck.py | 1152 group.add_argument('--short', dest='time', action="store_const", const='short', default='short', help="short test (default)") 1153 group.add_argument('--medium', dest='time', action="store_const", const='medium', default='short', help="medium test (reasonable run time)") 1154 group.add_argument('--long', dest='time', action="store_const", const='long', default='short', help="long test (long run time)") 1155 group.add_argument('--all', dest='time', action="store_const", const='all', default='short', help="all tests (excessive run time)") 1158 group.add_argument('--single', dest='single', nargs=1, default=False, metavar="TEST", help="run a single test") 1159 group.add_argument('--multicore', dest='multicore', action="store_true", default=False, help="use all available cores")
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | wpas_glue.c | 91 * @dest: Destination MAC address 97 static int wpa_ether_send(struct wpa_supplicant *wpa_s, const u8 *dest, in wpa_ether_send() argument 109 MAC2STR(dest), hex); in wpa_ether_send() 117 return l2_packet_send(wpa_s->l2, dest, proto, buf, len); in wpa_ether_send() 122 return wpa_drv_send_eapol(wpa_s, dest, proto, buf,len); in wpa_ether_send() 435 static int _wpa_ether_send(void *wpa_s, const u8 *dest, u16 proto, in _wpa_ether_send() argument 438 return wpa_ether_send(wpa_s, dest, proto, buf, len); in _wpa_ether_send()
|
/kernel/linux/linux-5.10/drivers/net/ieee802154/ |
H A D | ca8210.c | 1844 hdr.dest.mode = data_ind[11]; in ca8210_skb_rx() 1845 dev_dbg(&priv->spi->dev, "dstAddrMode: %#03x\n", hdr.dest.mode); in ca8210_skb_rx() 1846 hdr.dest.pan_id = *(u16 *)&data_ind[12]; in ca8210_skb_rx() 1847 dev_dbg(&priv->spi->dev, "dstPanId: %#06x\n", hdr.dest.pan_id); in ca8210_skb_rx() 1848 memcpy(&hdr.dest.extended_addr, &data_ind[14], 8); in ca8210_skb_rx() 1860 hdr.fc.dest_addr_mode = hdr.dest.mode; in ca8210_skb_rx() 1972 header.dest.mode, in ca8210_skb_tx() 1973 header.dest.pan_id, in ca8210_skb_tx() 1974 (union macaddr *)&header.dest.extended_addr, in ca8210_skb_tx()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | vga16fb.c | 983 char __iomem *dest; in vga_8planes_copyarea() local 994 dest = info->screen_base + dx + area->dy * info->fix.line_length; in vga_8planes_copyarea() 999 writeb(0, dest); in vga_8planes_copyarea() 1001 dest++; in vga_8planes_copyarea() 1004 dest += line_ofs; in vga_8planes_copyarea() 1008 dest = info->screen_base + dx + width + in vga_8planes_copyarea() 1015 --dest; in vga_8planes_copyarea() 1017 writeb(0, dest); in vga_8planes_copyarea() 1020 dest -= line_ofs; in vga_8planes_copyarea()
|
/kernel/linux/linux-6.6/fs/ceph/ |
H A D | dir.c | 957 const char *dest) in prep_encrypted_symlink_target() 960 int len = strlen(dest); in prep_encrypted_symlink_target() 963 err = fscrypt_prepare_symlink(req->r_parent, dest, len, PATH_MAX, in prep_encrypted_symlink_target() 968 err = fscrypt_encrypt_symlink(req->r_new_inode, dest, len, &osd_link); in prep_encrypted_symlink_target() 986 const char *dest) in prep_encrypted_symlink_target() 993 struct dentry *dentry, const char *dest) in ceph_symlink() 1013 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest); in ceph_symlink() 1031 err = prep_encrypted_symlink_target(req, dest); in ceph_symlink() 1035 req->r_path2 = kstrdup(dest, GFP_KERNEL); in ceph_symlink() 956 prep_encrypted_symlink_target(struct ceph_mds_request *req, const char *dest) prep_encrypted_symlink_target() argument 985 prep_encrypted_symlink_target(struct ceph_mds_request *req, const char *dest) prep_encrypted_symlink_target() argument 992 ceph_symlink(struct mnt_idmap *idmap, struct inode *dir, struct dentry *dentry, const char *dest) ceph_symlink() argument
|
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | vga16fb.c | 981 char __iomem *dest; in vga_8planes_copyarea() local 992 dest = info->screen_base + dx + area->dy * info->fix.line_length; in vga_8planes_copyarea() 997 writeb(0, dest); in vga_8planes_copyarea() 999 dest++; in vga_8planes_copyarea() 1002 dest += line_ofs; in vga_8planes_copyarea() 1006 dest = info->screen_base + dx + width + in vga_8planes_copyarea() 1013 --dest; in vga_8planes_copyarea() 1015 writeb(0, dest); in vga_8planes_copyarea() 1018 dest -= line_ofs; in vga_8planes_copyarea()
|
/kernel/linux/linux-6.6/drivers/net/ieee802154/ |
H A D | ca8210.c | 1801 hdr.dest.mode = data_ind[11]; in ca8210_skb_rx() 1802 dev_dbg(&priv->spi->dev, "dstAddrMode: %#03x\n", hdr.dest.mode); in ca8210_skb_rx() 1803 hdr.dest.pan_id = *(u16 *)&data_ind[12]; in ca8210_skb_rx() 1804 dev_dbg(&priv->spi->dev, "dstPanId: %#06x\n", hdr.dest.pan_id); in ca8210_skb_rx() 1805 memcpy(&hdr.dest.extended_addr, &data_ind[14], 8); in ca8210_skb_rx() 1817 hdr.fc.dest_addr_mode = hdr.dest.mode; in ca8210_skb_rx() 1929 header.dest.mode, in ca8210_skb_tx() 1930 header.dest.pan_id, in ca8210_skb_tx() 1931 (union macaddr *)&header.dest.extended_addr, in ca8210_skb_tx()
|
/kernel/linux/linux-6.6/arch/x86/kernel/ |
H A D | alternative.c | 339 apply_relocation(u8 *buf, size_t len, u8 *dest, u8 *src, size_t src_len) in apply_relocation() argument 368 src - dest); in apply_relocation() 376 imm += src - dest; in apply_relocation() 392 src - dest); in apply_relocation() 750 void *dest = NULL, *addr = (void *)s + *s; in apply_returns() local 762 dest = addr + insn.length + insn.immediate.value; in apply_returns() 764 if (__static_call_fixup(addr, op, dest) || in apply_returns() 765 WARN_ONCE(dest != &__x86_return_thunk, in apply_returns() 767 addr, dest, 5, addr)) in apply_returns()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Normalizer2Impl.java | 129 * If dest is a StringBuilder, then the buffer writes directly to it. 136 public ReorderingBuffer(Normalizer2Impl ni, Appendable dest, int destCapacity) { in ReorderingBuffer() argument 138 app=dest; in ReorderingBuffer() 141 str=(StringBuilder)dest; in ReorderingBuffer() 974 public Appendable decompose(CharSequence s, StringBuilder dest) { in decompose() argument 975 decompose(s, 0, s.length(), dest, s.length()); in decompose() 976 return dest; in decompose() 979 * Decomposes s[src, limit[ and writes the result to dest. 981 * destLengthEstimate is the initial dest buffer capacity and can be -1. 983 public void decompose(CharSequence s, int src, int limit, StringBuilder dest, in decompose() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Normalizer2Impl.java | 134 * If dest is a StringBuilder, then the buffer writes directly to it. 142 public ReorderingBuffer(Normalizer2Impl ni, Appendable dest, int destCapacity) { in ReorderingBuffer() argument 144 app=dest; in ReorderingBuffer() 147 str=(StringBuilder)dest; in ReorderingBuffer() 983 public Appendable decompose(CharSequence s, StringBuilder dest) { in decompose() argument 984 decompose(s, 0, s.length(), dest, s.length()); in decompose() 985 return dest; in decompose() 988 * Decomposes s[src, limit[ and writes the result to dest. 990 * destLengthEstimate is the initial dest buffer capacity and can be -1. 992 public void decompose(CharSequence s, int src, int limit, StringBuilder dest, in decompose() argument [all...] |
/third_party/node/tools/ |
H A D | test.py | 1348 result.add_option('--logfile', dest='logfile', 1364 result.add_option("--node-args", dest="node_args", help="Args to pass through to Node", 1366 result.add_option("--expect-fail", dest="expect_fail", 1394 dest="suppress_dialogs", default=True, action="store_true") 1396 dest="suppress_dialogs", action="store_false") 1400 dest="store_unexpected_output", default=True, action="store_true") 1403 dest="store_unexpected_output", action="store_false") 1410 help='Optional path to change test directory', dest='test_root', default=None) 1416 default=False, action="store_true", dest="abort_on_timeout")
|
/third_party/pulseaudio/src/modules/ |
H A D | module-ladspa-sink.c | 664 static bool sink_input_may_move_to_cb(pa_sink_input *i, pa_sink *dest) { in sink_input_may_move_to_cb() argument 673 return u->sink != dest; in sink_input_may_move_to_cb() 677 static void sink_input_moving_cb(pa_sink_input *i, pa_sink *dest) { in sink_input_moving_cb() argument 683 if (dest) { in sink_input_moving_cb() 684 pa_sink_set_asyncmsgq(u->sink, dest->asyncmsgq); in sink_input_moving_cb() 685 pa_sink_update_flags(u->sink, PA_SINK_LATENCY|PA_SINK_DYNAMIC_LATENCY, dest->flags); in sink_input_moving_cb() 689 if (u->auto_desc && dest) { in sink_input_moving_cb() 694 z = pa_proplist_gets(dest->proplist, PA_PROP_DEVICE_DESCRIPTION); in sink_input_moving_cb() 696 pa_proplist_gets(u->sink->proplist, "device.ladspa.name"), z ? z : dest->name); in sink_input_moving_cb()
|
/third_party/skia/src/sksl/ |
H A D | SkSLDSLParser.cpp | 1751 bool DSLParser::intLiteral(SKSL_INT* dest) { in intLiteral() argument 1757 if (!SkSL::stoi(s, dest)) { in intLiteral() 1765 bool DSLParser::floatLiteral(SKSL_FLOAT* dest) { in floatLiteral() argument 1771 if (!SkSL::stod(s, dest)) { in floatLiteral() 1779 bool DSLParser::boolLiteral(bool* dest) { in boolLiteral() argument 1783 *dest = true; in boolLiteral() 1786 *dest = false; in boolLiteral() 1795 bool DSLParser::identifier(skstd::string_view* dest) { in identifier() argument 1798 *dest = this->text(t); in identifier()
|
/third_party/tzdata/ |
H A D | localtime.c | 1941 mktmcpy(struct tm *dest, struct tm const *src) in mktmcpy() argument 1943 dest->tm_sec = src->tm_sec; in mktmcpy() 1944 dest->tm_min = src->tm_min; in mktmcpy() 1945 dest->tm_hour = src->tm_hour; in mktmcpy() 1946 dest->tm_mday = src->tm_mday; in mktmcpy() 1947 dest->tm_mon = src->tm_mon; in mktmcpy() 1948 dest->tm_year = src->tm_year; in mktmcpy() 1949 dest->tm_isdst = src->tm_isdst; in mktmcpy() 1951 dest->TM_GMTOFF = src->TM_GMTOFF; in mktmcpy()
|