Home
last modified time | relevance | path

Searched refs:dest (Results 126 - 150 of 3050) sorted by relevance

12345678910>>...122

/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...]
/third_party/lwip/src/core/ipv6/
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...]
/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...]
H A Dwmemcpy.c28 wchar_t dest[30]; in wmemcpy_0100() local
31 wmemcpy(dest, src, n); in wmemcpy_0100()
32 if (wcsncmp(dest, src, n)) { in wmemcpy_0100()
33 t_error("%s The string of dest is not equal to src\n", __func__); in wmemcpy_0100()
44 wchar_t dest[3]; in wmemcpy_0200() local
47 wmemcpy(dest, src, n); in wmemcpy_0200()
48 if (wcsncmp(dest, src, n)) { in wmemcpy_0200()
49 t_error("%s The string of dest is not equal to src\n", __func__); in wmemcpy_0200()
60 wchar_t dest[3]; in wmemcpy_0300() local
63 wmemcpy(dest, sr in wmemcpy_0300()
[all...]
H A Dwmemmove.c28 wchar_t dest[] = L"This is a c test for wmemmove function"; in wmemmove_0100() local
33 wmemmove(dest, src, count); in wmemmove_0100()
34 if (wcsncmp(dest, tmp, count)) { in wmemmove_0100()
35 t_error("The dest specified bits are not equal to the src\n", __func__); in wmemmove_0100()
47 wchar_t *dest = &src[2]; in wmemmove_0200() local
51 wmemmove(dest, src, count); in wmemmove_0200()
52 if (wcsncmp(dest, tmp, count)) { in wmemmove_0200()
53 t_error("The dest specified bits are not equal to the src\n", __func__); in wmemmove_0200()
59 * @tc.desc : The first address of dest is the same as src
65 wchar_t *dest in wmemmove_0300() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/nir/
H A Dtgsi_to_nir.c179 ttn_src_for_dest(nir_builder *b, nir_alu_dest *dest) in ttn_src_for_dest() argument
184 if (dest->dest.is_ssa) in ttn_src_for_dest()
185 src.src = nir_src_for_ssa(&dest->dest.ssa); in ttn_src_for_dest()
187 assert(!dest->dest.reg.indirect); in ttn_src_for_dest()
188 src.src = nir_src_for_reg(dest->dest.reg.reg); in ttn_src_for_dest()
189 src.src.reg.base_offset = dest in ttn_src_for_dest()
790 nir_alu_dest dest; ttn_get_dest() local
920 ttn_move_dest_masked(nir_builder *b, nir_alu_dest dest, nir_ssa_def *def, unsigned write_mask) ttn_move_dest_masked() argument
936 ttn_move_dest(nir_builder *b, nir_alu_dest dest, nir_ssa_def *def) ttn_move_dest() argument
942 ttn_alu(nir_builder *b, nir_op op, nir_alu_dest dest, unsigned dest_bitsize, nir_ssa_def **src) ttn_alu() argument
963 ttn_arl(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_arl() argument
975 ttn_exp(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_exp() argument
994 ttn_log(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_log() argument
1014 ttn_dst(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_dst() argument
1029 ttn_lit(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_lit() argument
1056 ttn_sle(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_sle() argument
1062 ttn_sgt(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_sgt() argument
1068 ttn_dp2(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_dp2() argument
1074 ttn_dp3(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_dp3() argument
1080 ttn_dp4(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_dp4() argument
1086 ttn_umad(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_umad() argument
1092 ttn_arr(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_arr() argument
1098 ttn_cmp(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_cmp() argument
1106 ttn_ucmp(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_ucmp() argument
1120 ttn_kill(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_kill() argument
1127 ttn_kill_if(nir_builder *b, nir_op op, nir_alu_dest dest, nir_ssa_def **src) ttn_kill_if() argument
1325 ttn_tex(struct ttn_compile *c, nir_alu_dest dest, nir_ssa_def **src) ttn_tex() argument
1580 ttn_txq(struct ttn_compile *c, nir_alu_dest dest, nir_ssa_def **src) ttn_txq() argument
1664 ttn_mem(struct ttn_compile *c, nir_alu_dest dest, nir_ssa_def **src) ttn_mem() argument
1986 nir_alu_dest dest = ttn_get_dest(c, tgsi_dst); ttn_emit_instruction() local
[all...]
/third_party/elfutils/libelf/
H A Dgelf_xlate.c47 #define elf_cvt_Byte(dest, src, n) \
49 ? (void) (*((char *) (dest)) = *((char *) (src))) \
50 : Elf32_cvt_Byte (dest, src, n))
52 (elf_cvt_Byte) (void *dest, const void *src, size_t n, in elf_cvt_Byte() argument
56 memmove (dest, src, n); in elf_cvt_Byte()
95 static inline void FName##1 (void *dest, const void *ptr) \
99 case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break; \
100 case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break; \
101 case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break; \
107 static void FName (void *dest, cons
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Dip4.h69 struct netif *ip4_route(const ip4_addr_t *dest, rt_scope_t scope);
71 struct netif *ip4_route_src(const ip4_addr_t *src, const ip4_addr_t *dest, rt_scope_t scope);
73 #define ip4_route_src(src, dest, scope) ip4_route(dest, scope)
76 struct netif *ip4_route(const ip4_addr_t *dest);
78 struct netif *ip4_route_src(const ip4_addr_t *src, const ip4_addr_t *dest);
80 #define ip4_route_src(src, dest) ip4_route(dest)
87 err_t ip4_output(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest,
90 err_t ip4_output_if(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest,
[all...]
/third_party/cups-filters/scripting/php/
H A Dphpcups.c217 char *dest; /* Destination */ in PHP_FUNCTION() local
223 zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl", &dest, &dest_len, &id)) in PHP_FUNCTION()
228 RETURN_LONG(cupsCancelJob(dest, id)); in PHP_FUNCTION()
241 *dest; /* Current destination */ in PHP_FUNCTION() local
259 for (i = 0, dest = dests; i < num_dests; i ++, dest ++) in PHP_FUNCTION()
270 add_property_string(destobj, "name", dest->name, 1); in PHP_FUNCTION()
272 dest->instance ? dest->instance : "", 1); in PHP_FUNCTION()
273 add_property_long(destobj, "is_default", dest in PHP_FUNCTION()
306 char *dest; /* Destination */ PHP_FUNCTION() local
403 char *dest; /* Destination */ PHP_FUNCTION() local
439 char *dest; /* Destination */ PHP_FUNCTION() local
[all...]
/third_party/mesa3d/src/panfrost/midgard/
H A Dmidgard_ra.c191 mark_node_class(aluw, ins->dest); in mir_lower_special_reads()
202 mark_node_class(aluw, ins->dest); in mir_lower_special_reads()
213 mark_node_class(texw, ins->dest); in mir_lower_special_reads()
281 if (pre_use->dest != i) in mir_lower_special_reads()
334 r1w = ins->dest; in mir_compute_interference()
342 if (ins->dest < ctx->temp_count) in mir_compute_interference()
343 lcra_add_node_interference(l, ins->dest, mir_bytemask(ins), r1w, 0xF); in mir_compute_interference()
375 if (ins_a->dest >= ctx->temp_count) continue; in mir_compute_interference()
380 if (ins_b->dest >= ctx->temp_count) continue; in mir_compute_interference()
382 lcra_add_node_interference(l, ins_b->dest, in mir_compute_interference()
397 unsigned dest = ins->dest; mir_compute_interference() local
548 int dest = ins->dest; allocate_registers() local
754 struct phys_reg dest = index_to_reg(ctx, l, ins->dest, dest_shift); install_registers_instr() local
816 struct phys_reg dest = index_to_reg(ctx, l, ins->dest, dest_shift); install_registers_instr() local
959 unsigned dest = (bundle == last_id)? last_spill_index : spill_index++; mir_spill_register() local
[all...]
/third_party/libwebsockets/lib/core-net/client/
H A Dsort-dns.c226 * Either or both sa and sb can be dest or gateway routes
233 const struct sockaddr_in6 *sa6 = to_v6_sa(&sa->dest), in lws_sort_dns_scomp()
234 *sb6 = to_v6_sa(&sb->dest); in lws_sort_dns_scomp()
239 if (!sa->dest.sa4.sin_family) in lws_sort_dns_scomp()
241 if (!sb->dest.sa4.sin_family) in lws_sort_dns_scomp()
390 const uint8_t *da_ads = (const uint8_t *)&da->dest.sa6.sin6_addr, in lws_sort_dns_dcomp()
391 *db_ads = (const uint8_t *)&db->dest.sa6.sin6_addr; in lws_sort_dns_dcomp()
408 scopea = lws_ipv6_unicast_scope(to_v6_sa(&da->dest)); in lws_sort_dns_dcomp()
409 scopeb = lws_ipv6_unicast_scope(to_v6_sa(&db->dest)); in lws_sort_dns_dcomp()
473 lws_sort_dns_classify(&da->source->dest, in lws_sort_dns_dcomp()
572 char dest[48], gw[48]; lws_sort_dns_dump() local
[all...]
/third_party/node/deps/ngtcp2/nghttp3/lib/
H A Dnghttp3_http.c177 static nghttp3_ssize sf_parse_integer_or_decimal(nghttp3_sf_value *dest, in sf_parse_integer_or_decimal() argument
240 if (dest) { in sf_parse_integer_or_decimal()
241 dest->type = (uint8_t)type; in sf_parse_integer_or_decimal()
242 dest->i = value * sign; in sf_parse_integer_or_decimal()
251 if (dest) { in sf_parse_integer_or_decimal()
252 dest->type = (uint8_t)type; in sf_parse_integer_or_decimal()
253 dest->d = (double)value; in sf_parse_integer_or_decimal()
255 dest->d /= (double)10; in sf_parse_integer_or_decimal()
257 dest->d *= sign; in sf_parse_integer_or_decimal()
323 static nghttp3_ssize sf_parse_string(nghttp3_sf_value *dest, in sf_parse_string() argument
423 sf_parse_token(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) sf_parse_token() argument
499 sf_parse_byteseq(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) sf_parse_byteseq() argument
530 sf_parse_boolean(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) sf_parse_boolean() argument
563 sf_parse_bare_item(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) sf_parse_bare_item() argument
638 sf_parse_item(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) sf_parse_item() argument
660 nghttp3_sf_parse_item(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) nghttp3_sf_parse_item() argument
665 sf_parse_inner_list(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) sf_parse_inner_list() argument
708 nghttp3_sf_parse_inner_list(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) nghttp3_sf_parse_inner_list() argument
714 sf_parse_item_or_inner_list(nghttp3_sf_value *dest, const uint8_t *begin, const uint8_t *end) sf_parse_item_or_inner_list() argument
744 nghttp3_http_parse_priority(nghttp3_pri *dest, const uint8_t *value, size_t valuelen) nghttp3_http_parse_priority() argument
[all...]
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
H A Drpng2-win.c698 uch *dest;
745 dest = wimage_data + j*wimage_rowbytes;
747 *dest++ = bg_blue;
748 *dest++ = bg_green;
749 *dest++ = bg_red;
815 dest = wimage_data + j*wimage_rowbytes;
817 *dest++ = bg_blue;
818 *dest++ = bg_green;
819 *dest++ = bg_red;
841 uch *src, *dest;
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocdispnames.cpp305 UChar *dest, int32_t destCapacity, in _getStringOrCopyKey()
336 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
341 u_charsToUChars(substitute, dest, uprv_min(length, destCapacity)); in _getStringOrCopyKey()
345 return u_terminateUChars(dest, destCapacity, length, pErrorCode); in _getStringOrCopyKey()
353 UChar *dest, int32_t destCapacity, in _getDisplayNameForComponent()
367 if(destCapacity<0 || (destCapacity>0 && dest==NULL)) { in _getDisplayNameForComponent()
383 return u_terminateUChars(dest, destCapacity, 0, pErrorCode); in _getDisplayNameForComponent()
392 dest, destCapacity, in _getDisplayNameForComponent()
399 UChar *dest, int32_t destCapacity, in uloc_getDisplayLanguage()
401 return _getDisplayNameForComponent(locale, displayLocale, dest, destCapacit in uloc_getDisplayLanguage()
300 _getStringOrCopyKey(const char *path, const char *locale, const char *tableKey, const char* subTableKey, const char *itemKey, const char *substitute, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) _getStringOrCopyKey() argument
351 _getDisplayNameForComponent(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UDisplayNameGetter *getter, const char *tag, UErrorCode *pErrorCode) _getDisplayNameForComponent() argument
397 uloc_getDisplayLanguage(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) uloc_getDisplayLanguage() argument
406 uloc_getDisplayScript(const char* locale, const char* displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) uloc_getDisplayScript() argument
431 uloc_getDisplayScriptInContext(const char* locale, const char* displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) uloc_getDisplayScriptInContext() argument
441 uloc_getDisplayCountry(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) uloc_getDisplayCountry() argument
455 uloc_getDisplayVariant(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) uloc_getDisplayVariant() argument
476 uloc_getDisplayName(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) uloc_getDisplayName() argument
777 uloc_getDisplayKeyword(const char* keyword, const char* displayLocale, UChar* dest, int32_t destCapacity, UErrorCode* status) uloc_getDisplayKeyword() argument
808 uloc_getDisplayKeywordValue( const char* locale, const char* keyword, const char* displayLocale, UChar* dest, int32_t destCapacity, UErrorCode* status) uloc_getDisplayKeywordValue() argument
[all...]
H A Dustr_wcs.cpp65 _strToWCS(wchar_t *dest, in _strToWCS() argument
205 uprv_memcpy(dest, intTarget, (size_t)count*sizeof(wchar_t)); in _strToWCS()
223 u_terminateWChars(dest,destCapacity,count,pErrorCode); in _strToWCS()
227 return dest; in _strToWCS()
232 u_strToWCS(wchar_t *dest, in u_strToWCS() argument
245 (destCapacity<0) || (dest == NULL && destCapacity > 0) in u_strToWCS()
257 u_memcpy((UChar *)dest, src, srcLength); in u_strToWCS()
263 u_terminateUChars((UChar *)dest,destCapacity,srcLength,pErrorCode); in u_strToWCS()
265 return dest; in u_strToWCS()
269 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacit in u_strToWCS()
283 _strFromWCS( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) _strFromWCS() argument
486 u_strFromWCS(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromWCS() argument
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_alu_width.c54 assert(alu->dest.dest.is_ssa); in inst_is_vector_alu()
56 return alu->dest.dest.ssa.num_components > 1 || in inst_is_vector_alu()
81 for (unsigned j = 1; j < alu->dest.dest.ssa.num_components; j++) { in alu_is_swizzled_in_bounds()
94 nir_ssa_dest_init(&alu->instr, &alu->dest.dest, num_components, in nir_alu_ssa_dest_init()
96 alu->dest.write_mask = (1 << num_components) - 1; in nir_alu_ssa_dest_init()
108 nir_alu_ssa_dest_init(chan, 1, alu->dest in lower_reduction()
[all...]
H A Dnir_lower_to_source_mods.c74 if (parent->dest.saturate) in nir_lower_to_source_mods_block()
133 if (nir_ssa_def_is_unused(&parent->dest.dest.ssa)) in nir_lower_to_source_mods_block()
143 if (!alu->dest.dest.is_ssa) in nir_lower_to_source_mods_block()
146 if (nir_dest_bit_size(alu->dest.dest) == 64 && in nir_lower_to_source_mods_block()
159 if (!list_is_empty(&alu->dest.dest.ssa.if_uses)) in nir_lower_to_source_mods_block()
163 nir_foreach_use(child_src, &alu->dest in nir_lower_to_source_mods_block()
[all...]
/third_party/node/test/parallel/
H A Dtest-fs-promises.js98 async function getHandle(dest) {
99 await copyFile(fixtures.path('baz.js'), dest);
100 await access(dest);
102 return open(dest, 'r+');
105 async function executeOnHandle(dest, func) {
108 handle = await getHandle(dest);
121 const dest = path.resolve(tmpDir, 'baz.js');
125 await executeOnHandle(dest, async (handle) => {
132 await executeOnHandle(dest, async (handle) => {
143 stats = await stat(dest);
[all...]
/third_party/rust/crates/libc/ci/
H A Dandroid-sysimage.sh10 local dest=/system
22 mkdir -p ${dest}/{bin,lib,lib64}
27 e2cp -p "${system}:/bin/linker64" "${dest}/bin/"
28 e2cp -p "${system}:/lib64/libdl.so" "${dest}/lib64/"
29 e2cp -p "${system}:/lib64/libc.so" "${dest}/lib64/"
30 e2cp -p "${system}:/lib64/libm.so" "${dest}/lib64/"
32 e2cp -p "${system}:/bin/linker" "${dest}/bin/"
33 e2cp -p "${system}:/lib/libdl.so" "${dest}/lib/"
34 e2cp -p "${system}:/lib/libc.so" "${dest}/lib/"
35 e2cp -p "${system}:/lib/libm.so" "${dest}/li
[all...]
/third_party/icu/icu4c/source/common/
H A Dustr_wcs.cpp65 _strToWCS(wchar_t *dest, in _strToWCS() argument
205 uprv_memcpy(dest, intTarget, (size_t)count*sizeof(wchar_t)); in _strToWCS()
223 u_terminateWChars(dest,destCapacity,count,pErrorCode); in _strToWCS()
227 return dest; in _strToWCS()
232 u_strToWCS(wchar_t *dest, in u_strToWCS() argument
245 (destCapacity<0) || (dest == NULL && destCapacity > 0) in u_strToWCS()
257 u_memcpy((UChar *)dest, src, srcLength); in u_strToWCS()
263 u_terminateUChars((UChar *)dest,destCapacity,srcLength,pErrorCode); in u_strToWCS()
265 return dest; in u_strToWCS()
269 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacit in u_strToWCS()
283 _strFromWCS( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) _strFromWCS() argument
486 u_strFromWCS(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromWCS() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dustr_wcs.cpp65 _strToWCS(wchar_t *dest, in _strToWCS() argument
205 uprv_memcpy(dest, intTarget, (size_t)count*sizeof(wchar_t)); in _strToWCS()
223 u_terminateWChars(dest,destCapacity,count,pErrorCode); in _strToWCS()
227 return dest; in _strToWCS()
232 u_strToWCS(wchar_t *dest, in u_strToWCS() argument
245 (destCapacity<0) || (dest == nullptr && destCapacity > 0) in u_strToWCS()
257 u_memcpy((char16_t *)dest, src, srcLength); in u_strToWCS()
263 u_terminateUChars((char16_t *)dest,destCapacity,srcLength,pErrorCode); in u_strToWCS()
265 return dest; in u_strToWCS()
269 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacit in u_strToWCS()
283 _strFromWCS( char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) _strFromWCS() argument
486 u_strFromWCS(char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromWCS() argument
[all...]
/third_party/mesa3d/src/asahi/compiler/
H A Dagx_lower_parallel_copy.c47 agx_mov_to(b, agx_register(copy->dest, copy->size), in do_copy()
54 if (copy->dest == copy->src) in do_swap()
57 agx_index x = agx_register(copy->dest, copy->size); in do_swap()
75 /* For each physreg, the pending copy_entry that uses it as a dest. */
85 if (ctx->physreg_use_count[entry->dest + i] != 0) in entry_blocked()
108 new_entry->dest = entry->dest + 1; in split_32bit_copy()
113 ctx->physreg_dest[entry->dest + 1] = new_entry; in split_32bit_copy()
141 assert(!ctx->physreg_dest[entry->dest + j]); in agx_emit_parallel_copies()
142 ctx->physreg_dest[entry->dest in agx_emit_parallel_copies()
[all...]
/third_party/lzma/Asm/arm64/
H A D7zAsm.S146 .macro cmove dest:req, srcTrue:req
147 csel \dest, \srcTrue, \dest, eq
150 .macro cmovne dest:req, srcTrue:req
151 csel \dest, \srcTrue, \dest, ne
154 .macro cmovs dest:req, srcTrue:req
155 csel \dest, \srcTrue, \dest, mi
158 .macro cmovns dest
[all...]
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_nir.c49 intr->dest.ssa.bit_size = 32; in etna_lower_io()
53 nir_ssa_def *ssa = nir_ine(&b, &intr->dest.ssa, nir_imm_int(&b, 0)); in etna_lower_io()
57 nir_ssa_def_rewrite_uses_after(&intr->dest.ssa, in etna_lower_io()
136 vec->dest.write_mask = 0xf; in etna_lower_io()
137 nir_ssa_dest_init(&vec->instr, &vec->dest.dest, 4, 32, NULL); in etna_lower_io()
140 nir_instr_rewrite_src(&tex->instr, coord, nir_src_for_ssa(&vec->dest.dest.ssa)); in etna_lower_io()
184 nir_ssa_def *ssa = &alu->dest.dest in etna_lower_alu_impl()
[all...]

Completed in 18 milliseconds

12345678910>>...122