Home
last modified time | relevance | path

Searched refs:dest (Results 101 - 125 of 3223) sorted by relevance

12345678910>>...129

/third_party/musl/src/time/
H A Dstrptime.c94 int i, w, neg, adj, min, range, *dest, dummy; in strptime() local
118 dest = &tm->tm_wday; in strptime()
123 dest = &tm->tm_mon; in strptime()
132 dest = &century; in strptime()
137 dest = &tm->tm_mday; in strptime()
152 dest = &tm->tm_year; in strptime()
165 dest = &tm->tm_hour; in strptime()
171 dest = &tm->tm_hour; in strptime()
176 dest = &tm->tm_yday; in strptime()
182 dest in strptime()
[all...]
/third_party/musl/porting/linux/user/src/stdio/
H A Dvfscanf.c27 static void store_int(void *dest, int size, unsigned long long i) in store_int() argument
29 if (!dest) return; in store_int()
32 *(char *)dest = i; in store_int()
35 *(short *)dest = i; in store_int()
38 *(int *)dest = i; in store_int()
41 *(long *)dest = i; in store_int()
44 *(long long *)dest = i; in store_int()
76 void *dest=NULL; in vfscanf() local
122 dest = 0; p++; in vfscanf()
124 dest in vfscanf()
[all...]
/third_party/lzma/C/
H A DBcj2.c71 Byte *dest = p->dest; in Bcj2Dec_Decode() local
74 if (dest == p->destLim) in Bcj2Dec_Decode()
80 *dest++ = (Byte)v; in Bcj2Dec_Decode()
81 p->dest = dest; in Bcj2Dec_Decode()
112 Byte *dest = p->dest; in Bcj2Dec_Decode() local
115 SizeT num = (SizeT)(p->destLim - dest); in Bcj2Dec_Decode()
130 *dest in Bcj2Dec_Decode()
244 Byte *dest; Bcj2Dec_Decode() local
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_rematerialize_compares.c75 if (!instr->dest.dest.is_ssa) in all_uses_are_bcsel()
78 nir_foreach_use(use, &instr->dest.dest.ssa) { in all_uses_are_bcsel()
90 if (alu->src[0].src.ssa != &instr->dest.dest.ssa) in all_uses_are_bcsel()
127 nir_foreach_use_safe(use, &alu->dest.dest.ssa) { in nir_opt_rematerialize_compares_impl()
142 if (use_alu->src[i].src.ssa == &alu->dest.dest in nir_opt_rematerialize_compares_impl()
[all...]
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/node/test/parallel/
H A Dtest-fs-write-sync-optional-params.js15 const dest = path.resolve(tmpdir.path, 'tmp.txt');
18 function testInvalid(dest, expectedCode, ...bufferAndOptions) {
24 fd = fs.openSync(dest, 'w+');
33 function testValid(dest, buffer, options) {
38 fd = fs.openSync(dest, 'w');
45 fd = fs.openSync(dest, 'r');
75 testInvalid(dest, 'ERR_INVALID_ARG_TYPE', common.mustNotMutateObjectDeep(badBuffer));
79 testInvalid(dest, 'ERR_INVALID_ARG_TYPE');
82 testInvalid(dest, 'ERR_OUT_OF_RANGE', buffer, { length: 5 });
83 testInvalid(dest, 'ERR_OUT_OF_RANG
[all...]
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/deps/v8/src/wasm/
H A Dleb-helper.h25 // Write a 32-bit unsigned LEB to {dest}, updating {dest} to point after
27 static void write_u32v(uint8_t** dest, uint32_t val) { in write_u32v() argument
29 *((*dest)++) = static_cast<uint8_t>(0x80 | (val & 0x7F)); in write_u32v()
32 *((*dest)++) = static_cast<uint8_t>(val & 0x7F); in write_u32v()
35 // Write a 32-bit signed LEB to {dest}, updating {dest} to point after
37 static void write_i32v(uint8_t** dest, int32_t val) { in write_i32v() argument
40 *((*dest)++) = static_cast<uint8_t>(0x80 | (val & 0x7F)); in write_i32v()
43 *((*dest) in write_i32v()
55 write_u64v(uint8_t** dest, uint64_t val) write_u64v() argument
65 write_i64v(uint8_t** dest, int64_t val) write_i64v() argument
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_gs_nir.cpp36 dst_reg dest; in nir_emit_intrinsic() local
41 assert(nir_dest_bit_size(instr->dest) == 32); in nir_emit_intrinsic()
58 dest = get_nir_dest(instr->dest, src.type); in nir_emit_intrinsic()
59 dest.writemask = brw_writemask_for_size(instr->num_components); in nir_emit_intrinsic()
60 emit(MOV(dest, src)); in nir_emit_intrinsic()
88 dest = get_nir_dest(instr->dest, BRW_REGISTER_TYPE_D); in nir_emit_intrinsic()
89 emit(MOV(dest, retype(brw_vec4_grf(1, 0), BRW_REGISTER_TYPE_D))); in nir_emit_intrinsic()
93 dest in nir_emit_intrinsic()
[all...]
/foundation/multimedia/av_codec/test/moduletest/audio_decoder/NativeAPI/
H A DNativeFunctionTest.cpp59 vector<string> dest; in SplitStringFully() local
66 dest.push_back(substring); in SplitStringFully()
69 return dest; in SplitStringFully()
74 dest.push_back(substring); in SplitStringFully()
76 return dest; in SplitStringFully()
121 vector<string> dest = SplitStringFully(inputFile, "_"); in getParamsByName() local
123 if (dest.size() < SIZE_7) { in getParamsByName()
127 channelCount = stoi(dest[INDEX_5]); in getParamsByName()
128 sampleRate = stoi(dest[INDEX_4]); in getParamsByName()
130 string bitStr = dest[INDEX_ in getParamsByName()
248 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
294 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
340 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
386 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
430 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
475 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
520 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
565 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
610 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
657 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
704 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
749 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
794 vector<string> dest = SplitStringFully(fileList[i], "_"); HWTEST_F() local
838 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
881 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
923 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
966 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
1067 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
1110 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
1152 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
1195 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
1289 vector<string> dest = SplitStringFully(inputFile, "_"); HWTEST_F() local
[all...]
/third_party/lwip/src/include/lwip/
H A Dip_addr.h137 #define ip_addr_copy(dest, src) do{ IP_SET_TYPE_VAL(dest, IP_GET_TYPE(&src)); if(IP_IS_V6_VAL(src)){ \
138 ip6_addr_copy(*ip_2_ip6(&(dest)), *ip_2_ip6(&(src))); }else{ \
139 ip4_addr_copy(*ip_2_ip4(&(dest)), *ip_2_ip4(&(src))); ip_clear_no4(&dest); }}while(0)
141 #define ip_addr_copy_from_ip6(dest, src) do{ \
142 ip6_addr_copy(*ip_2_ip6(&(dest)), src); IP_SET_TYPE_VAL(dest, IPADDR_TYPE_V6); }while(0)
144 #define ip_addr_copy_from_ip6_packed(dest, src) do{ \
145 ip6_addr_copy_from_packed(*ip_2_ip6(&(dest)), sr
[all...]
/third_party/skia/third_party/externals/angle2/src/image_util/
H A Dloadimage.cpp39 uint32_t *dest = priv::OffsetDataPointer<uint32_t>(output, y, z, outputRowPitch, in LoadA8ToRGBA8() local
45 for (; ((reinterpret_cast<intptr_t>(&dest[x]) & 0xF) != 0 && x < width); x++) in LoadA8ToRGBA8()
47 dest[x] = static_cast<uint32_t>(source[x]) << 24; in LoadA8ToRGBA8()
60 _mm_store_si128(reinterpret_cast<__m128i *>(&dest[x]), lo); in LoadA8ToRGBA8()
61 _mm_store_si128(reinterpret_cast<__m128i *>(&dest[x + 4]), hi); in LoadA8ToRGBA8()
67 dest[x] = static_cast<uint32_t>(source[x]) << 24; in LoadA8ToRGBA8()
82 uint32_t *dest = in LoadA8ToRGBA8() local
86 dest[x] = static_cast<uint32_t>(source[x]) << 24; in LoadA8ToRGBA8()
123 float *dest = in LoadA32FToRGBA32F() local
127 dest[ in LoadA32FToRGBA32F()
152 uint16_t *dest = LoadA16FToRGBA16F() local
181 uint8_t *dest = LoadL8ToRGBA8() local
226 float *dest = LoadL32FToRGBA32F() local
255 uint16_t *dest = LoadL16FToRGBA16F() local
284 uint8_t *dest = LoadLA8ToRGBA8() local
328 float *dest = LoadLA32FToRGBA32F() local
357 uint16_t *dest = LoadLA16FToRGBA16F() local
386 uint16_t *dest = LoadRGB8ToBGR565() local
418 uint16_t *dest = LoadRGB565ToBGR565() local
450 uint8_t *dest = LoadRGB8ToBGRX8() local
479 uint8_t *dest = LoadRG8ToBGRX8() local
508 uint8_t *dest = LoadR8ToBGRX8() local
537 uint8_t *dest = LoadR5G6B5ToBGRA8() local
570 uint8_t *dest = LoadR5G6B5ToRGBA8() local
608 uint32_t *dest = priv::OffsetDataPointer<uint32_t>(output, y, z, outputRowPitch, LoadRGBA8ToBGRA8() local
655 uint32_t *dest = LoadRGBA8ToBGRA8() local
682 uint16_t *dest = LoadRGBA8ToBGRA4() local
713 uint16_t *dest = LoadRGBA8ToRGBA4() local
744 uint16_t *dest = LoadRGBA4ToARGB4() local
770 uint8_t *dest = LoadRGBA4ToBGRA8() local
804 uint8_t *dest = LoadRGBA4ToRGBA8() local
838 uint8_t *dest = LoadBGRA4ToBGRA8() local
872 uint16_t *dest = LoadRGBA8ToBGR5A1() local
903 uint16_t *dest = LoadRGBA8ToRGB5A1() local
934 uint16_t *dest = LoadRGB10A2ToBGR5A1() local
967 uint16_t *dest = LoadRGB10A2ToRGB5A1() local
1000 uint16_t *dest = LoadRGB5A1ToA1RGB5() local
1026 uint16_t *dest = LoadRGB5A1ToBGR5A1() local
1057 uint8_t *dest = LoadRGB5A1ToBGRA8() local
1090 uint8_t *dest = LoadRGB5A1ToRGBA8() local
1123 uint8_t *dest = LoadBGR5A1ToBGRA8() local
1156 uint8_t *dest = LoadRGB10A2ToRGBA8() local
1186 uint32_t *dest = LoadRGB10A2ToRGB10X2() local
1212 uint32_t *dest = LoadRGB16FToRGB9E5() local
1240 uint32_t *dest = LoadRGB32FToRGB9E5() local
1267 uint32_t *dest = LoadRGB16FToRG11B10F() local
1295 uint32_t *dest = LoadRGB32FToRG11B10F() local
1323 uint32_t *dest = LoadG8R24ToR24G8() local
1461 float *dest = LoadD32FToD32F() local
1489 uint32_t *dest = LoadD32FS8X24ToD24S8() local
1627 uint16_t *dest = LoadRGB32FToRGBA16F() local
1656 uint16_t *dest = LoadRGB32FToRGB16F() local
1684 uint16_t *dest = LoadR32ToR16() local
1710 uint32_t *dest = LoadR32ToR24G8() local
1740 float *dest = LoadUNorm16To32F() local
1772 float *dest = LoadUNorm32To32F() local
[all...]
/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...]
/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...]
/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...]
/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/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/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...]
/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...]
/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...]

Completed in 15 milliseconds

12345678910>>...129