Home
last modified time | relevance | path

Searched refs:dest (Results 201 - 225 of 5579) sorted by relevance

12345678910>>...224

/third_party/lwip/src/core/ipv4/
H A Dip4.c130 ip4_route_src(const ip4_addr_t *src, const ip4_addr_t *dest, struct net_group *group) in ip4_route_src() argument
132 ip4_route_src(const ip4_addr_t *src, const ip4_addr_t *dest) in ip4_route_src()
136 /* when src==NULL, the hook is called from ip4_route(dest) */ in ip4_route_src()
137 struct netif *netif = LWIP_HOOK_IP4_ROUTE_SRC(src, dest); in ip4_route_src()
143 return ip4_route(dest, group); in ip4_route_src()
145 return ip4_route(dest); in ip4_route_src()
156 * @param dest the destination IP address for which to find the route
157 * @return the netif on which to send to reach dest
161 ip4_route(const ip4_addr_t *dest, struct net_group *group) argument
163 ip4_route(const ip4_addr_t *dest)
828 ip4_output_if(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif) global() argument
843 ip4_output_if_opt(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, u16_t optlen) global() argument
868 ip4_output_if_src(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif) global() argument
881 ip4_output_if_opt_src(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, u16_t optlen) global() argument
1069 ip4_output(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto) global() argument
1111 ip4_output_hinted(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif_hint *netif_hint) global() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dppir.h276 ppir_dest dest; member
290 ppir_dest dest; member
303 ppir_dest dest; member
319 ppir_dest dest; member
510 return &ppir_node_to_alu(node)->dest; in ppir_node_get_dest()
512 return &ppir_node_to_load(node)->dest; in ppir_node_get_dest()
514 return &ppir_node_to_const(node)->dest; in ppir_node_get_dest()
516 return &ppir_node_to_load_texture(node)->dest; in ppir_node_get_dest()
578 static inline ppir_reg *ppir_dest_get_reg(ppir_dest *dest) in ppir_dest_get_reg() argument
580 switch (dest in ppir_dest_get_reg()
592 ppir_dest *dest = ppir_node_get_dest(node); ppir_node_target_assign() local
613 ppir_node_target_equal(ppir_src *src, ppir_dest *dest) ppir_node_target_equal() argument
644 ppir_target_get_dest_reg_index(ppir_dest *dest) ppir_target_get_dest_reg_index() argument
671 ppir_target_is_scalar(ppir_dest *dest) ppir_target_is_scalar() argument
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_regs_to_ssa.c84 rewrite_dest(nir_dest *dest, void *_state) in rewrite_dest() argument
88 if (dest->is_ssa) in rewrite_dest()
91 nir_instr *instr = dest->reg.parent_instr; in rewrite_dest()
92 nir_register *reg = dest->reg.reg; in rewrite_dest()
97 list_del(&dest->reg.def_link); in rewrite_dest()
98 nir_ssa_dest_init(instr, dest, reg->num_components, in rewrite_dest()
101 nir_phi_builder_value_set_block_def(value, instr->block, &dest->ssa); in rewrite_dest()
111 if (alu->dest.dest.is_ssa) in rewrite_alu_instr()
114 nir_register *reg = alu->dest in rewrite_alu_instr()
[all...]
H A Dnir_gather_ssa_types.c72 copy_types(nir_src src, nir_dest *dest, BITSET_WORD *float_types, in copy_types() argument
76 copy_type(src.ssa->index, dest->ssa.index, src_is_sink, float_types, progress); in copy_types()
77 copy_type(src.ssa->index, dest->ssa.index, src_is_sink, int_types, progress); in copy_types()
107 assert(alu->dest.dest.is_ssa); in nir_gather_ssa_types()
118 copy_types(alu->src[i].src, &alu->dest.dest, in nir_gather_ssa_types()
127 copy_types(alu->src[1].src, &alu->dest.dest, in nir_gather_ssa_types()
129 copy_types(alu->src[2].src, &alu->dest in nir_gather_ssa_types()
[all...]
/third_party/lwip/src/core/ipv6/
H A Dip6.c82 * @param dest the destination IPv6 address for which to find the route
83 * @return the netif on which to send to reach dest
87 ip6_route(const ip6_addr_t *src, const ip6_addr_t *dest, struct net_group *group) argument
89 ip6_route(const ip6_addr_t *src, const ip6_addr_t *dest)
94 LWIP_UNUSED_ARG(dest);
105 (ip6_addr_has_zone(dest) && !ip6_addr_test_zone(dest, group->netif_list))) {
109 (ip6_addr_has_zone(dest) && !ip6_addr_test_zone(dest, netif_list))) {
126 if (ip6_addr_has_zone(dest)) {
335 ip6_select_source_address(struct netif *netif, const ip6_addr_t *dest) global() argument
1209 ip6_output_if(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth, struct netif *netif) global() argument
1233 ip6_output_if_src(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth, struct netif *netif) global() argument
1351 ip6_output(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth) global() argument
1422 ip6_output_hinted(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth, struct netif_hint *netif_hint) global() argument
[all...]
H A Dethip6.c81 struct eth_addr dest; in ethip6_output() local
93 dest.addr[0] = 0x33; in ethip6_output()
94 dest.addr[1] = 0x33; in ethip6_output()
95 dest.addr[2] = ((const u8_t *)(&(ip6addr->addr[3])))[0]; in ethip6_output()
96 dest.addr[3] = ((const u8_t *)(&(ip6addr->addr[3])))[1]; in ethip6_output()
97 dest.addr[4] = ((const u8_t *)(&(ip6addr->addr[3])))[2]; in ethip6_output()
98 dest.addr[5] = ((const u8_t *)(&(ip6addr->addr[3])))[3]; in ethip6_output()
101 return ethernet_output(netif, q, (const struct eth_addr*)(netif->hwaddr), &dest, ETHTYPE_IPV6); in ethip6_output()
119 SMEMCPY(dest.addr, hwaddr, 6); in ethip6_output()
120 return ethernet_output(netif, q, (const struct eth_addr*)(netif->hwaddr), &dest, ETHTYPE_IPV in ethip6_output()
[all...]
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/jpeg_yuv_decoder/
H A Djpeg_yuvdata_converter.h41 int I444ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
42 int I444ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
43 int I422ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
44 int I422ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
45 int I420ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
46 int I420ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
47 int I440ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
48 int I440ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
49 int I411ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
50 int I411ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
[all...]
/kernel/linux/linux-5.10/fs/
H A Dstack.c63 void fsstack_copy_attr_all(struct inode *dest, const struct inode *src) in fsstack_copy_attr_all() argument
65 dest->i_mode = src->i_mode; in fsstack_copy_attr_all()
66 dest->i_uid = src->i_uid; in fsstack_copy_attr_all()
67 dest->i_gid = src->i_gid; in fsstack_copy_attr_all()
68 dest->i_rdev = src->i_rdev; in fsstack_copy_attr_all()
69 dest->i_atime = src->i_atime; in fsstack_copy_attr_all()
70 dest->i_mtime = src->i_mtime; in fsstack_copy_attr_all()
71 dest->i_ctime = src->i_ctime; in fsstack_copy_attr_all()
72 dest->i_blkbits = src->i_blkbits; in fsstack_copy_attr_all()
73 dest in fsstack_copy_attr_all()
[all...]
/kernel/linux/linux-6.6/fs/
H A Dstack.c63 void fsstack_copy_attr_all(struct inode *dest, const struct inode *src) in fsstack_copy_attr_all() argument
65 dest->i_mode = src->i_mode; in fsstack_copy_attr_all()
66 dest->i_uid = src->i_uid; in fsstack_copy_attr_all()
67 dest->i_gid = src->i_gid; in fsstack_copy_attr_all()
68 dest->i_rdev = src->i_rdev; in fsstack_copy_attr_all()
69 dest->i_atime = src->i_atime; in fsstack_copy_attr_all()
70 dest->i_mtime = src->i_mtime; in fsstack_copy_attr_all()
71 inode_set_ctime_to_ts(dest, inode_get_ctime(src)); in fsstack_copy_attr_all()
72 dest->i_blkbits = src->i_blkbits; in fsstack_copy_attr_all()
73 dest in fsstack_copy_attr_all()
[all...]
/third_party/node/test/parallel/
H A Dtest-fs-copyfile-respect-permissions.js26 const dest = path.join(tmpdir.path, `dest${n}`);
28 fs.writeFileSync(dest, 'dest');
29 fs.chmodSync(dest, '444');
34 assert.strictEqual(fs.readFileSync(dest, 'utf8'), 'dest');
38 return { source, dest, check };
43 const { source, dest, check } = beforeEach();
44 assert.throws(() => { fs.copyFileSync(source, dest); }, chec
[all...]
/third_party/node/
H A Dconfigure.py87 dest='prefix', variable
93 dest='coverage', variable
99 dest='debug', variable
105 dest='debug_node', variable
109 parser.add_argument('--dest-cpu',
111 dest='dest_cpu', variable
117 dest='cross_compiling', variable
122 dest='cross_compiling', variable
126 parser.add_argument('--dest-os',
128 dest variable
134 dest='error_on_warn', global() variable
140 dest='gdb', global() variable
146 dest='no_ifaddrs', global() variable
152 dest='disable_single_executable_application', global() variable
158 dest="fully_static", global() variable
165 dest="partly_static", global() variable
172 dest="enable_vtune_profiling", global() variable
179 dest="enable_pgo_generate", global() variable
186 dest="enable_pgo_use", global() variable
193 dest="enable_lto", global() variable
200 dest="linked_module", global() variable
208 dest="openssl_conf_name", global() variable
214 dest='openssl_default_cipher_list', global() variable
219 dest="openssl_no_asm", global() variable
225 dest='openssl_is_fips', global() variable
231 dest='use_openssl_ca_store', global() variable
237 dest='openssl_system_ca_path', global() variable
243 dest='experimental_http_parser', global() variable
249 dest='shared_http_parser', global() variable
255 dest='shared_http_parser_includes', global() variable
260 dest='shared_http_parser_libname', global() variable
266 dest='shared_http_parser_libpath', global() variable
271 dest='shared_libuv', global() variable
277 dest='shared_libuv_includes', global() variable
282 dest='shared_libuv_libname', global() variable
288 dest='shared_libuv_libpath', global() variable
293 dest='shared_nghttp2', global() variable
299 dest='shared_nghttp2_includes', global() variable
304 dest='shared_nghttp2_libname', global() variable
310 dest='shared_nghttp2_libpath', global() variable
315 dest='shared_nghttp3', global() variable
321 dest='shared_nghttp3_includes', global() variable
326 dest='shared_nghttp3_libname', global() variable
332 dest='shared_nghttp3_libpath', global() variable
337 dest='shared_ngtcp2', global() variable
343 dest='shared_ngtcp2_includes', global() variable
348 dest='shared_ngtcp2_libname', global() variable
354 dest='shared_ngtcp2_libpath', global() variable
359 dest='shared_openssl', global() variable
365 dest='shared_openssl_includes', global() variable
370 dest='shared_openssl_libname', global() variable
376 dest='shared_openssl_libpath', global() variable
381 dest='shared_zlib', global() variable
387 dest='shared_zlib_includes', global() variable
392 dest='shared_zlib_libname', global() variable
398 dest='shared_zlib_libpath', global() variable
403 dest='shared_brotli', global() variable
409 dest='shared_brotli_includes', global() variable
414 dest='shared_brotli_libname', global() variable
420 dest='shared_brotli_libpath', global() variable
425 dest='shared_cares', global() variable
431 dest='shared_cares_includes', global() variable
436 dest='shared_cares_libname', global() variable
442 dest='shared_cares_libpath', global() variable
451 dest='node_shared_builtin_' + builtin.replace('/', '_') + '_path', global() variable
459 dest='static_zoslib_gyp', global() variable
466 dest='systemtap_includes', global() variable
471 dest='tag', global() variable
476 dest='release_urlbase', global() variable
483 dest='enable_d8', global() variable
489 dest='trace_maps', global() variable
495 dest='enable_pointer_compression', global() variable
501 dest='disable_shared_ro_heap', global() variable
507 dest='v8_options', global() variable
512 dest='ossfuzz', global() variable
518 dest='arm_float_abi', global() variable
524 dest='arm_fpu', global() variable
530 dest='mips_arch_variant', global() variable
537 dest='mips_fpu_mode', global() variable
544 dest='mips_float_abi', global() variable
551 dest='with_dtrace', global() variable
557 dest='with_etw', global() variable
563 dest='node_use_large_pages', global() variable
569 dest='node_use_large_pages_script_lld', global() variable
575 dest='node_section_ordering_info', global() variable
583 dest='with_intl', global() variable
590 dest='with_intl', global() variable
596 dest='with_icu_path', global() variable
603 dest='with_icu_locales', global() variable
610 dest='with_icu_source', global() variable
617 dest='with_icu_default_data_dir', global() variable
625 dest='with_ltcg', global() variable
631 dest='without_node_snapshot', global() variable
637 dest='without_node_code_cache', global() variable
643 dest='download_list', global() variable
648 dest='download_path', global() variable
656 dest='node_debug_lib', global() variable
662 dest='debug_nghttp2', global() variable
670 dest='without_dtrace', global() variable
676 dest='without_etw', global() variable
682 dest='without_npm', global() variable
688 dest='without_corepack', global() variable
695 dest='unused_without_report', global() variable
701 dest='unused_with_snapshot', global() variable
707 dest='unused_without_snapshot', global() variable
713 dest='without_siphash', global() variable
721 dest='without_ssl', global() variable
727 dest='without_node_options', global() variable
733 dest='use_ninja', global() variable
739 dest='enable_asan', global() variable
745 dest='enable_static', global() variable
751 dest='no_browser_globals', global() variable
759 dest='without_inspector', global() variable
765 dest='shared', global() variable
772 dest='libdir', global() variable
780 dest='without_v8_platform', global() variable
787 dest='without_bundled_v8', global() variable
794 dest='verbose', global() variable
800 dest='v8_non_optimized_debug', global() variable
806 dest='v8_with_dchecks', global() variable
812 dest='v8_lite_mode', global() variable
820 dest='v8_enable_object_print', global() variable
826 dest='v8_disable_object_print', global() variable
832 dest='v8_enable_hugepage', global() variable
839 dest='v8_enable_short_builtin_calls', global() variable
846 dest='v8_enable_snapshot_compression', global() variable
852 dest='node_builtin_modules_path', global() variable
858 dest='node_snapshot_main', global() variable
866 dest='compile_commands_json', global() variable
[all...]
/third_party/ffmpeg/libavformat/
H A Durldecode.c39 char *dest = NULL; in ff_urldecode() local
45 dest = av_malloc(url_len); in ff_urldecode()
47 if (!dest) in ff_urldecode()
70 dest[d++] = 16 * c2 + c3; in ff_urldecode()
73 dest[d++] = c; in ff_urldecode()
74 dest[d++] = c2; in ff_urldecode()
75 dest[d++] = c3; in ff_urldecode()
78 dest[d++] = ' '; in ff_urldecode()
80 dest[d++] = c; in ff_urldecode()
85 return dest; in ff_urldecode()
[all...]
/kernel/linux/linux-6.6/arch/csky/lib/
H A Dstring.c30 void *memcpy(void *dest, const void *src, size_t count) in memcpy() argument
33 union types d = { .as_u8 = dest }; in memcpy()
72 * If the source and dest lower bits are the same, do a simple in memcpy()
83 return dest; in memcpy()
91 void *memmove(void *dest, const void *src, size_t count) in memmove() argument
93 if (dest < src || src + count <= dest) in memmove()
94 return memcpy(dest, src, count); in memmove()
96 if (dest > src) { in memmove()
98 char *tmp = dest in memmove()
109 union types dest = { .as_u8 = s }; memset() local
[all...]
/third_party/node/lib/internal/streams/
H A Dlegacy.js16 Stream.prototype.pipe = function(dest, options) {
20 if (dest.writable && dest.write(chunk) === false && source.pause) {
33 dest.on('drain', ondrain);
35 // If the 'end' option is not supplied, dest.end() will be called when
36 // source gets the 'end' or 'close' events. Only dest.end() once.
37 if (!dest._isStdio && (!options || options.end !== false)) {
47 dest.end();
55 if (typeof dest.destroy === 'function') dest
[all...]
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_blt.c113 assert(op->dest.bpp); in emit_blt_clearimage()
114 etna_set_state(stream, VIVS_BLT_CONFIG, VIVS_BLT_CONFIG_CLEAR_BPP(op->dest.bpp-1)); in emit_blt_clearimage()
115 /* NB: blob sets format to 1 in dest/src config for clear, and the swizzle to RRRR. in emit_blt_clearimage()
119 etna_set_state(stream, VIVS_BLT_DEST_STRIDE, blt_compute_stride_bits(&op->dest)); in emit_blt_clearimage()
120 etna_set_state(stream, VIVS_BLT_DEST_CONFIG, blt_compute_img_config_bits(&op->dest, true)); in emit_blt_clearimage()
121 etna_set_state_reloc(stream, VIVS_BLT_DEST_ADDR, &op->dest.addr); in emit_blt_clearimage()
122 etna_set_state(stream, VIVS_BLT_SRC_STRIDE, blt_compute_stride_bits(&op->dest)); in emit_blt_clearimage()
123 etna_set_state(stream, VIVS_BLT_SRC_CONFIG, blt_compute_img_config_bits(&op->dest, false)); in emit_blt_clearimage()
124 etna_set_state_reloc(stream, VIVS_BLT_SRC_ADDR, &op->dest.addr); in emit_blt_clearimage()
131 if (op->dest in emit_blt_clearimage()
[all...]
/third_party/icu/icu4c/source/test/perf/normperf/
H A Dnormperf.h32 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
108 UChar dest[DEST_BUFFER_CAPACITY]; member in NormPerfFunction
156 pDest = dest; in NormPerfFunction()
173 if(dest != pDest){ in ~NormPerfFunction()
193 void normalizeInput(ULine* dest,const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options);
261 int32_t ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) { in ICUNormNFD() argument
262 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status); in ICUNormNFD()
265 int32_t ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) { in ICUNormNFC() argument
266 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status); in ICUNormNFC()
269 int32_t ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_ argument
272 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) ICUNormNFKC() argument
276 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) ICUNormFCD() argument
294 ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) ICUNormNFD() argument
298 ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) ICUNormNFC() argument
302 ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) ICUNormNFKD() argument
305 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) ICUNormNFKC() argument
309 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) ICUNormFCD() argument
324 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFD() argument
328 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFC() argument
332 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFKD() argument
335 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFKC() argument
339 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFD() argument
343 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFC() argument
347 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFKD() argument
350 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) WinNormNFKC() argument
[all...]
/kernel/linux/linux-5.10/arch/mips/netlogic/xlr/
H A Dfmn.c45 #define COP2_CC_INIT_CPU_DEST(dest, conf) \
47 nlm_write_c2_cc##dest(0, conf[(dest * 8) + 0]); \
48 nlm_write_c2_cc##dest(1, conf[(dest * 8) + 1]); \
49 nlm_write_c2_cc##dest(2, conf[(dest * 8) + 2]); \
50 nlm_write_c2_cc##dest(3, conf[(dest * 8) + 3]); \
51 nlm_write_c2_cc##dest(
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Descaping.cc74 // 'dest' and 'dest_len' respectively, and returns true. Otherwise
78 // 'dest' should point to a buffer that is at least as big as 'source'.
79 // 'source' and 'dest' may be the same.
85 char* dest, ptrdiff_t* dest_len, std::string* error) { in CUnescapeInternal()
86 char* d = dest; in CUnescapeInternal()
91 // Small optimization for case where source = dest and there's no escaping in CUnescapeInternal()
272 *dest_len = d - dest; in CUnescapeInternal()
279 // Same as above but uses a std::string for output. 'source' and 'dest'
283 std::string* dest, std::string* error) { in CUnescapeInternal()
284 strings_internal::STLStringResizeUninitialized(dest, sourc in CUnescapeInternal()
84 CUnescapeInternal(absl::string_view source, bool leave_nulls_escaped, char* dest, ptrdiff_t* dest_len, std::string* error) CUnescapeInternal() argument
282 CUnescapeInternal(absl::string_view source, bool leave_nulls_escaped, std::string* dest, std::string* error) CUnescapeInternal() argument
311 std::string dest; CEscapeInternal() local
382 CEscapeAndAppendInternal(absl::string_view src, std::string* dest) CEscapeAndAppendInternal() argument
434 Base64UnescapeInternal(const char* src_param, size_t szsrc, char* dest, size_t szdest, const signed char* unbase64, size_t* len) Base64UnescapeInternal() argument
772 Base64UnescapeInternal(const char* src, size_t slen, String* dest, const signed char* unbase64) Base64UnescapeInternal() argument
834 BytesToHexStringInternal(const unsigned char* src, T dest, ptrdiff_t num) BytesToHexStringInternal() argument
849 CUnescape(absl::string_view source, std::string* dest, std::string* error) CUnescape() argument
855 std::string dest; CEscape() local
896 Base64Unescape(absl::string_view src, std::string* dest) Base64Unescape() argument
900 WebSafeBase64Unescape(absl::string_view src, std::string* dest) WebSafeBase64Unescape() argument
904 Base64Escape(absl::string_view src, std::string* dest) Base64Escape() argument
906 reinterpret_cast<const unsigned char*>(src.data()), src.size(), dest, Base64Escape() local
910 WebSafeBase64Escape(absl::string_view src, std::string* dest) WebSafeBase64Escape() argument
912 reinterpret_cast<const unsigned char*>(src.data()), src.size(), dest, WebSafeBase64Escape() local
917 std::string dest; Base64Escape() local
919 reinterpret_cast<const unsigned char*>(src.data()), src.size(), &dest, Base64Escape() local
925 std::string dest; WebSafeBase64Escape() local
927 reinterpret_cast<const unsigned char*>(src.data()), src.size(), &dest, WebSafeBase64Escape() local
[all...]
/kernel/linux/linux-5.10/net/netfilter/ipvs/
H A Dip_vs_sed.c43 ip_vs_sed_dest_overhead(struct ip_vs_dest *dest) in ip_vs_sed_dest_overhead() argument
49 return atomic_read(&dest->activeconns) + 1; in ip_vs_sed_dest_overhead()
60 struct ip_vs_dest *dest, *least; in ip_vs_sed_schedule() local
66 * We calculate the load of each dest server as follows: in ip_vs_sed_schedule()
67 * (server expected overhead) / dest->weight in ip_vs_sed_schedule()
78 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_sed_schedule()
79 if (!(dest->flags & IP_VS_DEST_F_OVERLOAD) && in ip_vs_sed_schedule()
80 atomic_read(&dest->weight) > 0) { in ip_vs_sed_schedule()
81 least = dest; in ip_vs_sed_schedule()
93 list_for_each_entry_continue_rcu(dest, in ip_vs_sed_schedule()
[all...]
/kernel/linux/linux-6.6/net/netfilter/ipvs/
H A Dip_vs_sed.c43 ip_vs_sed_dest_overhead(struct ip_vs_dest *dest) in ip_vs_sed_dest_overhead() argument
49 return atomic_read(&dest->activeconns) + 1; in ip_vs_sed_dest_overhead()
60 struct ip_vs_dest *dest, *least; in ip_vs_sed_schedule() local
66 * We calculate the load of each dest server as follows: in ip_vs_sed_schedule()
67 * (server expected overhead) / dest->weight in ip_vs_sed_schedule()
78 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_sed_schedule()
79 if (!(dest->flags & IP_VS_DEST_F_OVERLOAD) && in ip_vs_sed_schedule()
80 atomic_read(&dest->weight) > 0) { in ip_vs_sed_schedule()
81 least = dest; in ip_vs_sed_schedule()
93 list_for_each_entry_continue_rcu(dest, in ip_vs_sed_schedule()
[all...]
H A Dip_vs_twos.c48 struct ip_vs_dest *dest, *choice1 = NULL, *choice2 = NULL; in ip_vs_twos_schedule() local
55 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_twos_schedule()
56 if (!(dest->flags & IP_VS_DEST_F_OVERLOAD)) { in ip_vs_twos_schedule()
57 weight = atomic_read(&dest->weight); in ip_vs_twos_schedule()
60 choice1 = dest; in ip_vs_twos_schedule()
78 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_twos_schedule()
79 if (dest->flags & IP_VS_DEST_F_OVERLOAD) in ip_vs_twos_schedule()
82 weight = atomic_read(&dest->weight); in ip_vs_twos_schedule()
90 choice1 = dest; in ip_vs_twos_schedule()
92 overhead1 = ip_vs_dest_conn_overhead(dest); in ip_vs_twos_schedule()
[all...]
/third_party/mesa3d/src/panfrost/util/
H A Dnir_mod_helpers.c88 nir_dest *dest = *odest; in pan_has_dest_mod() local
89 if (!dest->is_ssa) in pan_has_dest_mod()
93 if (!list_is_empty(&dest->ssa.if_uses)) in pan_has_dest_mod()
96 if (!list_is_singular(&dest->ssa.uses)) in pan_has_dest_mod()
99 nir_src *use = list_first_entry(&dest->ssa.uses, nir_src, use_link); in pan_has_dest_mod()
111 unsigned nr_components = nir_dest_num_components(alu->dest.dest); in pan_has_dest_mod()
113 if (nir_dest_num_components(*dest) != nr_components) in pan_has_dest_mod()
122 if (!alu->dest.dest in pan_has_dest_mod()
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/string/
H A Dwcsncpy.c39 wchar_t *dest = (wchar_t *)buf; in wcsncpy_0100() local
41 if (dest != wcsncpy(dest, src, SIZEOF_WCHAR(src))) { in wcsncpy_0100()
42 t_error("%s failed: wcsncpy. src = %ls, dest = %ls\n", __func__, src, dest); in wcsncpy_0100()
56 wchar_t *dest = (wchar_t *)buf; in wcsncpy_0200() local
58 if (dest != wcsncpy(dest, src, 0)) { in wcsncpy_0200()
59 t_error("%s failed: wcsncpy. src = %ls, dest = %ls\n", __func__, src, dest); in wcsncpy_0200()
73 wchar_t *dest = (wchar_t *)buf; wcsncpy_0300() local
[all...]
/kernel/linux/linux-5.10/arch/parisc/math-emu/
H A Dcnv_float.h39 #define Sgl_to_dbl_exponent(src_exponent,dest) \
40 Deposit_dexponent(dest,src_exponent+(DBL_BIAS-SGL_BIAS))
85 #define Dbl_to_sgl_exponent(src_exponent,dest) \
86 dest = src_exponent + (SGL_BIAS - DBL_BIAS)
88 #define Dbl_to_sgl_mantissa(srcA,srcB,dest,inexact,guard,sticky,odd) \
89 Shiftdouble(Dmantissap1(srcA),Dmantissap2(srcB),29,dest); \
95 #define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \
103 Shiftdouble(Dmantissap1(srcA),Dmantissap2(srcB),29,dest); \
104 odd = dest << 31; \
109 dest
[all...]
/kernel/linux/linux-6.6/arch/parisc/math-emu/
H A Dcnv_float.h39 #define Sgl_to_dbl_exponent(src_exponent,dest) \
40 Deposit_dexponent(dest,src_exponent+(DBL_BIAS-SGL_BIAS))
85 #define Dbl_to_sgl_exponent(src_exponent,dest) \
86 dest = src_exponent + (SGL_BIAS - DBL_BIAS)
88 #define Dbl_to_sgl_mantissa(srcA,srcB,dest,inexact,guard,sticky,odd) \
89 Shiftdouble(Dmantissap1(srcA),Dmantissap2(srcB),29,dest); \
95 #define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \
103 Shiftdouble(Dmantissap1(srcA),Dmantissap2(srcB),29,dest); \
104 odd = dest << 31; \
109 dest
[all...]

Completed in 16 milliseconds

12345678910>>...224