Home
last modified time | relevance | path

Searched refs:pd (Results 1 - 25 of 142) sorted by relevance

123456

/third_party/ffmpeg/libavdevice/
H A Dpulse_audio_dec.c115 PulseData *pd = s->priv_data; in pulse_close() local
117 if (pd->mainloop) in pulse_close()
118 pa_threaded_mainloop_stop(pd->mainloop); in pulse_close()
120 if (pd->stream) in pulse_close()
121 pa_stream_unref(pd->stream); in pulse_close()
122 pd->stream = NULL; in pulse_close()
124 if (pd->context) { in pulse_close()
125 pa_context_disconnect(pd->context); in pulse_close()
126 pa_context_unref(pd->context); in pulse_close()
128 pd in pulse_close()
142 PulseData *pd = s->priv_data; pulse_read_header() local
290 PulseData *pd = s->priv_data; pulse_read_packet() local
[all...]
/third_party/ffmpeg/tools/
H A Dscale_slice_test.c53 PrivData *pd = dc->opaque; in process_frame() local
60 if (!pd->scaler) { in process_frame()
61 pd->scaler = sws_getContext(frame->width, frame->height, frame->format, in process_frame()
62 pd->frame_ref->width, pd->frame_ref->height, in process_frame()
63 pd->frame_ref->format, 0, NULL, NULL, NULL); in process_frame()
64 if (!pd->scaler) in process_frame()
67 av_pix_fmt_get_chroma_sub_sample(frame->format, &pd->h_shift_src, &pd->v_shift_src); in process_frame()
71 ret = sws_scale(pd in process_frame()
114 PrivData pd; main() local
[all...]
H A Dprobetest.c38 static void probe(AVProbeData *pd, int type, int p, int size) in probe() argument
52 score = fmt->read_probe(pd); in probe()
97 AVProbeData pd = { 0 }; in main() local
131 pd.buf = NULL; in main()
133 pd.buf_size = size; in main()
134 pd.buf = av_realloc(pd.buf, size + AVPROBE_PADDING_SIZE); in main()
135 pd.filename = ""; in main()
137 if (!pd.buf) { in main()
142 memset(pd in main()
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dpdispatch.c250 pa_pdispatch *pd; in pa_pdispatch_new() local
255 pd = pa_xnew0(pa_pdispatch, 1); in pa_pdispatch_new()
256 PA_REFCNT_INIT(pd); in pa_pdispatch_new()
257 pd->mainloop = mainloop; in pa_pdispatch_new()
258 pd->callback_table = table; in pa_pdispatch_new()
259 pd->n_commands = entries; in pa_pdispatch_new()
260 PA_LLIST_HEAD_INIT(struct reply_info, pd->replies); in pa_pdispatch_new()
261 pd->use_rtclock = use_rtclock; in pa_pdispatch_new()
263 return pd; in pa_pdispatch_new()
266 static void pdispatch_free(pa_pdispatch *pd) { in pdispatch_free() argument
279 run_action(pa_pdispatch *pd, struct reply_info *r, uint32_t command, pa_tagstruct *ts) run_action() argument
301 pa_pdispatch_run(pa_pdispatch *pd, pa_packet *packet, pa_cmsg_ancil_data *ancil_data, void *userdata) pa_pdispatch_run() argument
387 pa_pdispatch_register_reply(pa_pdispatch *pd, uint32_t tag, int timeout, pa_pdispatch_cb_t cb, void *userdata, pa_free_cb_t free_cb) pa_pdispatch_register_reply() argument
411 pa_pdispatch_is_pending(pa_pdispatch *pd) pa_pdispatch_is_pending() argument
418 pa_pdispatch_set_drain_callback(pa_pdispatch *pd, pa_pdispatch_drain_cb_t cb, void *userdata) pa_pdispatch_set_drain_callback() argument
427 pa_pdispatch_unregister_reply(pa_pdispatch *pd, void *userdata) pa_pdispatch_unregister_reply() argument
438 pa_pdispatch_unref(pa_pdispatch *pd) pa_pdispatch_unref() argument
446 pa_pdispatch_ref(pa_pdispatch *pd) pa_pdispatch_ref() argument
456 pa_pdispatch_creds(pa_pdispatch *pd) pa_pdispatch_creds() argument
469 pa_pdispatch_take_ancil_data(pa_pdispatch *pd) pa_pdispatch_take_ancil_data() argument
[all...]
H A Dpdispatch.h35 typedef void (*pa_pdispatch_cb_t)(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
36 typedef void (*pa_pdispatch_drain_cb_t)(pa_pdispatch *pd, void *userdata);
39 void pa_pdispatch_unref(pa_pdispatch *pd);
40 pa_pdispatch* pa_pdispatch_ref(pa_pdispatch *pd);
42 int pa_pdispatch_run(pa_pdispatch *pd, pa_packet *p, pa_cmsg_ancil_data *ancil_data, void *userdata);
44 void pa_pdispatch_register_reply(pa_pdispatch *pd, uint32_t tag, int timeout, pa_pdispatch_cb_t callback, void *userdata, pa_free_cb_t free_cb);
46 int pa_pdispatch_is_pending(pa_pdispatch *pd);
48 void pa_pdispatch_set_drain_callback(pa_pdispatch *pd, pa_pdispatch_drain_cb_t callback, void *userdata);
51 void pa_pdispatch_unregister_reply(pa_pdispatch *pd, void *userdata);
53 const pa_creds * pa_pdispatch_creds(pa_pdispatch *pd);
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dparam_build.c55 OSSL_PARAM_BLD_DEF *pd = OPENSSL_zalloc(sizeof(*pd)); in param_push() local
57 if (pd == NULL) { in param_push()
61 pd->key = key; in param_push()
62 pd->type = type; in param_push()
63 pd->size = size; in param_push()
64 pd->alloc_blocks = ossl_param_bytes_to_blocks(alloc); in param_push()
65 if ((pd->secure = secure) != 0) in param_push()
66 bld->secure_blocks += pd->alloc_blocks; in param_push()
68 bld->total_blocks += pd in param_push()
79 OSSL_PARAM_BLD_DEF *pd = param_push(bld, key, size, size, type, 0); param_push_num() local
204 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_BN_pad() local
239 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_utf8_string() local
259 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_utf8_ptr() local
277 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_octet_string() local
295 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_octet_ptr() local
313 OSSL_PARAM_BLD_DEF *pd; param_bld_convert() local
[all...]
/third_party/openssl/crypto/
H A Dparam_build.c55 OSSL_PARAM_BLD_DEF *pd = OPENSSL_zalloc(sizeof(*pd)); in param_push() local
57 if (pd == NULL) { in param_push()
61 pd->key = key; in param_push()
62 pd->type = type; in param_push()
63 pd->size = size; in param_push()
64 pd->alloc_blocks = ossl_param_bytes_to_blocks(alloc); in param_push()
65 if ((pd->secure = secure) != 0) in param_push()
66 bld->secure_blocks += pd->alloc_blocks; in param_push()
68 bld->total_blocks += pd in param_push()
79 OSSL_PARAM_BLD_DEF *pd = param_push(bld, key, size, size, type, 0); param_push_num() local
204 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_BN_pad() local
239 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_utf8_string() local
259 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_utf8_ptr() local
277 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_octet_string() local
295 OSSL_PARAM_BLD_DEF *pd; OSSL_PARAM_BLD_push_octet_ptr() local
313 OSSL_PARAM_BLD_DEF *pd; param_bld_convert() local
[all...]
/third_party/node/deps/openssl/openssl/providers/common/
H A Dprovider_util.c140 void ossl_prov_digest_reset(PROV_DIGEST *pd) in ossl_prov_digest_reset() argument
142 EVP_MD_free(pd->alloc_md); in ossl_prov_digest_reset()
143 pd->alloc_md = NULL; in ossl_prov_digest_reset()
144 pd->md = NULL; in ossl_prov_digest_reset()
146 ENGINE_finish(pd->engine); in ossl_prov_digest_reset()
148 pd->engine = NULL; in ossl_prov_digest_reset()
167 const EVP_MD *ossl_prov_digest_fetch(PROV_DIGEST *pd, OSSL_LIB_CTX *libctx, in ossl_prov_digest_fetch() argument
170 EVP_MD_free(pd->alloc_md); in ossl_prov_digest_fetch()
171 pd->md = pd in ossl_prov_digest_fetch()
176 ossl_prov_digest_load_from_params(PROV_DIGEST *pd, const OSSL_PARAM params[], OSSL_LIB_CTX *ctx) ossl_prov_digest_load_from_params() argument
214 ossl_prov_digest_md(const PROV_DIGEST *pd) ossl_prov_digest_md() argument
219 ossl_prov_digest_engine(const PROV_DIGEST *pd) ossl_prov_digest_engine() argument
[all...]
/third_party/openssl/providers/common/
H A Dprovider_util.c140 void ossl_prov_digest_reset(PROV_DIGEST *pd) in ossl_prov_digest_reset() argument
142 EVP_MD_free(pd->alloc_md); in ossl_prov_digest_reset()
143 pd->alloc_md = NULL; in ossl_prov_digest_reset()
144 pd->md = NULL; in ossl_prov_digest_reset()
146 ENGINE_finish(pd->engine); in ossl_prov_digest_reset()
148 pd->engine = NULL; in ossl_prov_digest_reset()
167 const EVP_MD *ossl_prov_digest_fetch(PROV_DIGEST *pd, OSSL_LIB_CTX *libctx, in ossl_prov_digest_fetch() argument
170 EVP_MD_free(pd->alloc_md); in ossl_prov_digest_fetch()
171 pd->md = pd in ossl_prov_digest_fetch()
176 ossl_prov_digest_load_from_params(PROV_DIGEST *pd, const OSSL_PARAM params[], OSSL_LIB_CTX *ctx) ossl_prov_digest_load_from_params() argument
214 ossl_prov_digest_md(const PROV_DIGEST *pd) ossl_prov_digest_md() argument
219 ossl_prov_digest_engine(const PROV_DIGEST *pd) ossl_prov_digest_engine() argument
[all...]
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_postform.c181 struct curl_httppost *pd; in testInternalPost() local
196 pd = make_form (); in testInternalPost()
197 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd); in testInternalPost()
215 curl_formfree (pd); in testInternalPost()
220 curl_formfree (pd); in testInternalPost()
237 struct curl_httppost *pd; in testMultithreadedPost() local
252 pd = make_form (); in testMultithreadedPost()
253 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd); in testMultithreadedPost()
271 curl_formfree (pd); in testMultithreadedPost()
276 curl_formfree (pd); in testMultithreadedPost()
293 struct curl_httppost *pd; testMultithreadedPoolPost() local
359 struct curl_httppost *pd; testExternalPost() local
[all...]
/third_party/ffmpeg/libavformat/
H A Dformat.c130 const AVInputFormat *av_probe_input_format3(const AVProbeData *pd, in av_probe_input_format3() argument
133 AVProbeData lpd = *pd; in av_probe_input_format3()
209 const AVInputFormat *av_probe_input_format2(const AVProbeData *pd, in av_probe_input_format2() argument
213 const AVInputFormat *fmt = av_probe_input_format3(pd, is_opened, &score_ret); in av_probe_input_format2()
221 const AVInputFormat *av_probe_input_format(const AVProbeData *pd, int is_opened) in av_probe_input_format() argument
224 return av_probe_input_format2(pd, is_opened, &score); in av_probe_input_format()
231 AVProbeData pd = { filename ? filename : "" }; in av_probe_input_buffer2() local
253 pd.mime_type = (const char *)mime_type_opt; in av_probe_input_buffer2()
254 semi = pd.mime_type ? strchr(pd in av_probe_input_buffer2()
[all...]
H A Dvapoursynth.c99 const AVPixFmtDescriptor *pd; in is_native_endian() local
102 pd = av_pix_fmt_desc_get(pixfmt); in is_native_endian()
103 return pd && (!!HAVE_BIGENDIAN == !!(pd->flags & AV_PIX_FMT_FLAG_BE)); in is_native_endian()
110 const AVPixFmtDescriptor *pd; in match_pixfmt() local
112 for (pd = av_pix_fmt_desc_next(NULL); pd; pd = av_pix_fmt_desc_next(pd)) { in match_pixfmt()
117 pixfmt = av_pix_fmt_desc_get_id(pd); in match_pixfmt()
[all...]
/third_party/pulseaudio/src/pulse/
H A Dinternal.h269 void pa_command_request(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
270 void pa_command_stream_killed(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
271 void pa_command_subscribe_event(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
272 void pa_command_overflow_or_underflow(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
273 void pa_command_stream_suspended(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
274 void pa_command_stream_moved(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
275 void pa_command_stream_started(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
276 void pa_command_stream_event(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
277 void pa_command_client_event(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
278 void pa_command_stream_buffer_attr(pa_pdispatch *pd, uint32_
[all...]
/third_party/skia/third_party/externals/microhttpd/src/testzzuf/
H A Dtest_post_form.c174 struct curl_httppost *pd; in testInternalPost() local
193 pd = make_form (); in testInternalPost()
194 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd); in testInternalPost()
208 curl_formfree (pd); in testInternalPost()
225 struct curl_httppost *pd; in testMultithreadedPost() local
244 pd = make_form (); in testMultithreadedPost()
245 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd); in testMultithreadedPost()
259 curl_formfree (pd); in testMultithreadedPost()
284 struct curl_httppost *pd; in testExternalPost() local
312 pd in testExternalPost()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dpngdec.c918 uint8_t *pd = p->data[0]; in handle_small_bpp() local
923 pd[8*i + k - 1] = (pd[i]>>8-k) & 1; in handle_small_bpp()
925 pd[8*i + 7]= pd[i] & 1; in handle_small_bpp()
926 pd[8*i + 6]= (pd[i]>>1) & 1; in handle_small_bpp()
927 pd[8*i + 5]= (pd[i]>>2) & 1; in handle_small_bpp()
928 pd[ in handle_small_bpp()
938 uint8_t *pd = p->data[0]; handle_small_bpp() local
966 uint8_t *pd = p->data[0]; handle_small_bpp() local
1061 uint8_t *pd = p->data[0]; handle_p_frame_png() local
[all...]
/third_party/vixl/src/aarch64/
H A Dassembler-sve-aarch64.cc1049 void Assembler::facge(const PRegisterWithLaneSize& pd, in facge() argument
1062 Emit(FACGE_p_p_zz | SVESize(zn) | Pd(pd) | PgLow8(pg) | Rn(zn) | Rm(zm)); in facge()
1065 void Assembler::facgt(const PRegisterWithLaneSize& pd, in facgt() argument
1078 Emit(FACGT_p_p_zz | SVESize(zn) | Pd(pd) | PgLow8(pg) | Rn(zn) | Rm(zm)); in facgt()
1081 void Assembler::fcmeq(const PRegisterWithLaneSize& pd, in fcmeq() argument
1094 Emit(FCMEQ_p_p_zz | SVESize(zn) | Pd(pd) | PgLow8(pg) | Rn(zn) | Rm(zm)); in fcmeq()
1097 void Assembler::fcmge(const PRegisterWithLaneSize& pd, in fcmge() argument
1110 Emit(FCMGE_p_p_zz | SVESize(zn) | Pd(pd) | PgLow8(pg) | Rn(zn) | Rm(zm)); in fcmge()
1113 void Assembler::fcmgt(const PRegisterWithLaneSize& pd, in fcmgt() argument
1126 Emit(FCMGT_p_p_zz | SVESize(zn) | Pd(pd) | PgLow in fcmgt()
1129 fcmne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) fcmne() argument
1145 fcmuo(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) fcmuo() argument
1163 fcmeq(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) fcmeq() argument
1180 fcmge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) fcmge() argument
1197 fcmgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) fcmgt() argument
1214 fcmle(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) fcmle() argument
1231 fcmlt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) fcmlt() argument
1248 fcmne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) fcmne() argument
2684 whilele(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilele() argument
2699 whilelo(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilelo() argument
2714 whilels(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilels() argument
2729 whilelt(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilelt() argument
2744 CompareVectors(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm, SVEIntCompareVectorsOp op) CompareVectors() argument
2752 CompareVectors(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, int imm, SVEIntCompareSignedImmOp op) CompareVectors() argument
2760 CompareVectors(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, unsigned imm, SVEIntCompareUnsignedImmOp op) CompareVectors() argument
2769 cmp(Condition cond, const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmp() argument
2812 cmpeq(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, int imm5) cmpeq() argument
2827 cmpge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, int imm5) cmpge() argument
2842 cmpgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, int imm5) cmpgt() argument
2857 cmple(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, int imm5) cmple() argument
2872 cmplt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, int imm5) cmplt() argument
2887 cmpne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, int imm5) cmpne() argument
2904 cmphi(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, unsigned imm7) cmphi() argument
2919 cmphs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, unsigned imm7) cmphs() argument
2934 cmplo(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, unsigned imm7) cmplo() argument
2949 cmpls(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, unsigned imm7) cmpls() argument
2969 cmpeq(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmpeq() argument
2986 cmpge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmpge() argument
3003 cmpgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmpgt() argument
3020 cmphi(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmphi() argument
3037 cmphs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmphs() argument
3051 cmple(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmple() argument
3067 cmplo(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmplo() argument
3083 cmpls(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmpls() argument
3099 cmplt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmplt() argument
3118 cmpne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) cmpne() argument
5379 brka(const PRegisterWithLaneSize& pd, const PRegister& pg, const PRegisterWithLaneSize& pn) brka() argument
5390 brkas(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) brkas() argument
5399 brkb(const PRegisterWithLaneSize& pd, const PRegister& pg, const PRegisterWithLaneSize& pn) brkb() argument
5410 brkbs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) brkbs() argument
5419 brkn(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) brkn() argument
5431 brkns(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) brkns() argument
5445 punpkhi(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn) punpkhi() argument
5458 punpklo(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn) punpklo() argument
5471 rev(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn) rev() argument
5483 trn1(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) trn1() argument
5496 trn2(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) trn2() argument
5509 uzp1(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) uzp1() argument
5522 uzp2(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) uzp2() argument
5535 zip1(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) zip1() argument
5548 zip2(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) zip2() argument
6101 and_(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) and_() argument
6111 ands(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) ands() argument
6121 bic(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) bic() argument
6131 bics(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) bics() argument
6141 eor(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) eor() argument
6151 eors(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) eors() argument
6161 nand(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) nand() argument
6171 nands(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) nands() argument
6181 nor(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) nor() argument
6191 nors(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) nors() argument
6201 orn(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) orn() argument
6211 orns(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) orns() argument
6221 orr(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) orr() argument
6231 orrs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) orrs() argument
6241 sel(const PRegisterWithLaneSize& pd, const PRegister& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) sel() argument
6251 pfalse(const PRegisterWithLaneSize& pd) pfalse() argument
6262 pfirst(const PRegisterWithLaneSize& pd, const PRegister& pg, const PRegisterWithLaneSize& pn) pfirst() argument
6277 pnext(const PRegisterWithLaneSize& pd, const PRegister& pg, const PRegisterWithLaneSize& pn) pnext() argument
6302 ptrue(const PRegisterWithLaneSize& pd, int pattern) ptrue() argument
6312 ptrues(const PRegisterWithLaneSize& pd, int pattern) ptrues() argument
6322 rdffr(const PRegisterWithLaneSize& pd) rdffr() argument
6332 rdffr(const PRegisterWithLaneSize& pd, const PRegisterZ& pg) rdffr() argument
6342 rdffrs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg) rdffrs() argument
6354 brkpa(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) brkpa() argument
6368 brkpas(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) brkpas() argument
6382 brkpb(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) brkpb() argument
6396 brkpbs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) brkpbs() argument
6514 mov(const PRegister& pd, const PRegister& pn) mov() argument
6521 mov(const PRegisterWithLaneSize& pd, const PRegisterM& pg, const PRegisterWithLaneSize& pn) mov() argument
6528 mov(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) mov() argument
6593 movs(const PRegister& pd, const PRegister& pn) movs() argument
6598 movs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) movs() argument
6605 not_(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) not_() argument
6612 nots(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) nots() argument
7270 match(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) match() argument
7378 nmatch(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) nmatch() argument
9711 whilege(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilege() argument
9726 whilegt(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilegt() argument
9741 whilehi(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilehi() argument
9756 whilehs(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilehs() argument
9771 whilerw(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilerw() argument
9784 whilewr(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) whilewr() argument
[all...]
H A Dmacro-assembler-aarch64.h3671 void And(const PRegisterWithLaneSize& pd, in And() argument
3677 and_(pd, pg, pn, pm); in And()
3695 void Ands(const PRegisterWithLaneSize& pd, in Ands() argument
3701 ands(pd, pg, pn, pm); in Ands()
3742 void Bic(const PRegisterWithLaneSize& pd, in Bic() argument
3748 bic(pd, pg, pn, pm); in Bic()
3766 void Bics(const PRegisterWithLaneSize& pd, in Bics() argument
3772 bics(pd, pg, pn, pm); in Bics()
3774 void Brka(const PRegisterWithLaneSize& pd, in Brka() argument
3779 brka(pd, p in Brka()
3781 Brkas(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) Brkas() argument
3788 Brkb(const PRegisterWithLaneSize& pd, const PRegister& pg, const PRegisterWithLaneSize& pn) Brkb() argument
3795 Brkbs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) Brkbs() argument
3802 Brkn(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Brkn() argument
3813 Brkns(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Brkns() argument
3824 Brkpa(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Brkpa() argument
3832 Brkpas(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Brkpas() argument
3840 Brkpb(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Brkpb() argument
3848 Brkpbs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Brkpbs() argument
3906 Cmpeq(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmpeq() argument
3914 Cmpeq(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmpeq() argument
3927 Cmpge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmpge() argument
3935 Cmpge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmpge() argument
3948 Cmpgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmpgt() argument
3956 Cmpgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmpgt() argument
3969 Cmphi(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmphi() argument
3977 Cmphi(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmphi() argument
3989 Cmphs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmphs() argument
3997 Cmphs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmphs() argument
4008 Cmple(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmple() argument
4016 Cmple(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmple() argument
4029 Cmplo(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmplo() argument
4037 Cmplo(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmplo() argument
4048 Cmpls(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmpls() argument
4056 Cmpls(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmpls() argument
4067 Cmplt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmplt() argument
4075 Cmplt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmplt() argument
4088 Cmpne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Cmpne() argument
4096 Cmpne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, IntegerOperand imm) Cmpne() argument
4244 Eor(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Eor() argument
4268 Eors(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Eors() argument
4299 Facge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Facge() argument
4307 Facgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Facgt() argument
4315 Facle(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Facle() argument
4323 Faclt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Faclt() argument
4367 Fcmeq(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) Fcmeq() argument
4380 Fcmeq(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Fcmeq() argument
4388 Fcmge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) Fcmge() argument
4401 Fcmge(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Fcmge() argument
4409 Fcmgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) Fcmgt() argument
4422 Fcmgt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Fcmgt() argument
4445 Fcmle(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) Fcmle() argument
4458 Fcmle(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Fcmle() argument
4466 Fcmlt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) Fcmlt() argument
4479 Fcmlt(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Fcmlt() argument
4487 Fcmne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, double zero) Fcmne() argument
4500 Fcmne(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Fcmne() argument
4508 Fcmuo(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Fcmuo() argument
5445 Mov(const PRegister& pd, const PRegister& pn) Mov() argument
5450 Mov(const PRegisterWithLaneSize& pd, const PRegisterM& pg, const PRegisterWithLaneSize& pn) Mov() argument
5457 Mov(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) Mov() argument
5510 Movs(const PRegister& pd, const PRegister& pn) Movs() argument
5515 Movs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) Movs() argument
5535 Nand(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Nand() argument
5543 Nands(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Nands() argument
5563 Nor(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Nor() argument
5571 Nors(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Nors() argument
5579 Not(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) Not() argument
5591 Nots(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn) Nots() argument
5598 Orn(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Orn() argument
5616 Orns(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Orns() argument
5624 Orr(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Orr() argument
5648 Orrs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Orrs() argument
5661 Pfalse(const PRegister& pd) Pfalse() argument
5711 Ptrue(const PRegisterWithLaneSize& pd, SVEPredicateConstraint pattern = SVE_ALL) Ptrue() argument
5717 Ptrues(const PRegisterWithLaneSize& pd, SVEPredicateConstraint pattern = SVE_ALL) Ptrues() argument
5723 Punpkhi(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn) Punpkhi() argument
5729 Punpklo(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn) Punpklo() argument
5740 Rdffr(const PRegister& pd) Rdffr() argument
5750 Rdffr(const PRegisterWithLaneSize& pd, const PRegisterZ& pg) Rdffr() argument
5755 Rdffrs(const PRegisterWithLaneSize& pd, const PRegisterZ& pg) Rdffrs() argument
5770 Rev(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn) Rev() argument
5818 Sel(const PRegisterWithLaneSize& pd, const PRegister& pg, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Sel() argument
6237 Trn1(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Trn1() argument
6249 Trn2(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Trn2() argument
6473 Uzp1(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Uzp1() argument
6485 Uzp2(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Uzp2() argument
6497 Whilele(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilele() argument
6504 Whilelo(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilelo() argument
6511 Whilels(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilels() argument
6518 Whilelt(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilelt() argument
6535 Zip1(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Zip1() argument
6547 Zip2(const PRegisterWithLaneSize& pd, const PRegisterWithLaneSize& pn, const PRegisterWithLaneSize& pm) Zip2() argument
6770 Match(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Match() argument
6805 Nmatch(const PRegisterWithLaneSize& pd, const PRegisterZ& pg, const ZRegister& zn, const ZRegister& zm) Nmatch() argument
7571 Whilege(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilege() argument
7578 Whilegt(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilegt() argument
7585 Whilehi(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilehi() argument
7592 Whilehs(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilehs() argument
7599 Whilerw(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilerw() argument
7606 Whilewr(const PRegisterWithLaneSize& pd, const Register& rn, const Register& rm) Whilewr() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_pulldom.py180 pd = SAX2DOMTestHelper(None, SAXExerciser(), 12)
181 self._test_thorough(pd)
185 pd = SAX2DOMTestHelper(None, SAX2DOMExerciser(), 12)
186 self._test_thorough(pd, False)
188 def _test_thorough(self, pd, before_root=True):
192 evt, node = next(pd)
198 evt, node = next(pd)
201 evt, node = next(pd)
206 evt, node = next(pd)
210 evt, node = next(pd)
[all...]
/third_party/node/deps/openssl/openssl/providers/common/include/prov/
H A Dprovider_util.h66 const EVP_MD *ossl_prov_digest_fetch(PROV_DIGEST *pd, OSSL_LIB_CTX *libctx,
75 int ossl_prov_digest_load_from_params(PROV_DIGEST *pd,
80 void ossl_prov_digest_reset(PROV_DIGEST *pd);
86 const EVP_MD *ossl_prov_digest_md(const PROV_DIGEST *pd);
87 ENGINE *ossl_prov_digest_engine(const PROV_DIGEST *pd);
/third_party/openssl/providers/common/include/prov/
H A Dprovider_util.h66 const EVP_MD *ossl_prov_digest_fetch(PROV_DIGEST *pd, OSSL_LIB_CTX *libctx,
75 int ossl_prov_digest_load_from_params(PROV_DIGEST *pd,
80 void ossl_prov_digest_reset(PROV_DIGEST *pd);
86 const EVP_MD *ossl_prov_digest_md(const PROV_DIGEST *pd);
87 ENGINE *ossl_prov_digest_engine(const PROV_DIGEST *pd);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DThreadLocal.cpp30 void **pd = reinterpret_cast<void**>(&data); in setInstance() local
31 *pd = const_cast<void*>(d); in setInstance()
34 void **pd = reinterpret_cast<void**>(&data); in getInstance() local
35 return *pd; in getInstance()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/
H A DvktVideoBaseDecodeUtils.cpp932 bool VideoBaseDecoder::DecodePicture (VkParserPictureData* pd)
937 if (!pd->pCurrPic)
942 vkPicBuffBase* pVkPicBuff = GetPic(pd->pCurrPic);
947 << "\t\t progressive: " << (bool)pd->progressive_frame
949 "\t\t field: " << (bool)pd->field_pic_flag << std::endl
951 "\t\t\t bottom_field: " << (bool)pd->bottom_field_flag
953 "\t\t\t second_field: " << (bool)pd->second_field
955 "\t\t\t top_field: " << (bool)pd->top_field_first << std::endl
957 "\t\t repeat_first: " << pd->repeat_first_field
960 "\t\t ref_pic: " << (bool)pd
[all...]
/third_party/backends/backend/
H A Dkvs1025_usb.c105 PKV_DEV pd; in kv_usb_enum_devices() local
121 for (pd = g_devices; pd; pd=pd->next) { in kv_usb_enum_devices()
134 pd = g_devices; in kv_usb_enum_devices()
137 g_devlist[i] = (const SANE_Device *) &pd->sane; in kv_usb_enum_devices()
138 pd = pd->next; in kv_usb_enum_devices()
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_rob.c49 int ngtcp2_rob_data_new(ngtcp2_rob_data **pd, uint64_t offset, size_t chunk, in ngtcp2_rob_data_new() argument
51 *pd = ngtcp2_mem_malloc(mem, sizeof(ngtcp2_rob_data) + chunk); in ngtcp2_rob_data_new()
52 if (*pd == NULL) { in ngtcp2_rob_data_new()
56 (*pd)->range.begin = offset; in ngtcp2_rob_data_new()
57 (*pd)->range.end = offset + chunk; in ngtcp2_rob_data_new()
58 (*pd)->begin = (uint8_t *)(*pd) + sizeof(ngtcp2_rob_data); in ngtcp2_rob_data_new()
59 (*pd)->end = (*pd)->begin + chunk; in ngtcp2_rob_data_new()
/third_party/cups-filters/filter/foomatic-rip/
H A Dpdf.c55 FILE *pd = popen(gscommand, "r"); in pdf_count_pages() local
56 if (!pd) in pdf_count_pages()
59 bytes = fread_or_die(output, 1, sizeof(output), pd); in pdf_count_pages()
60 pclose(pd); in pdf_count_pages()
147 FILE *pd = popen(gscommand, "r"); in pdf_extract_pages() local
148 if (!pd) in pdf_extract_pages()
150 pclose(pd); in pdf_extract_pages()

Completed in 40 milliseconds

123456