/external/libmicrohttpd/src/microhttpd/ |
D | postprocessor.c | 342 post_process_urlencoded (struct MHD_PostProcessor *pp, in post_process_urlencoded() argument 355 buf = (char *) &pp[1]; in post_process_urlencoded() 359 switch (pp->state) in post_process_urlencoded() 365 pp->state = PP_Error; in post_process_urlencoded() 372 if (equals + pp->buffer_pos > pp->buffer_size) in post_process_urlencoded() 374 pp->state = PP_Error; /* out of memory */ in post_process_urlencoded() 377 memcpy (&buf[pp->buffer_pos], &post_data[poff], equals); in post_process_urlencoded() 378 pp->buffer_pos += equals; in post_process_urlencoded() 381 buf[pp->buffer_pos] = '\0'; /* 0-terminate key */ in post_process_urlencoded() 382 pp->buffer_pos = 0; /* reset for next key */ in post_process_urlencoded() [all …]
|
D | test_postprocessor.c | 126 struct MHD_PostProcessor *pp; in test_urlencoding() local 138 pp = MHD_create_post_processor (&connection, in test_urlencoding() 145 MHD_post_process (pp, &URL_DATA[i], delta); in test_urlencoding() 148 MHD_destroy_post_processor (pp); in test_urlencoding() 160 struct MHD_PostProcessor *pp; in test_multipart_garbage() local 184 pp = MHD_create_post_processor (&connection, in test_multipart_garbage() 186 MHD_post_process (pp, xdata, splitpoint); in test_multipart_garbage() 187 MHD_post_process (pp, &xdata[splitpoint], size - splitpoint); in test_multipart_garbage() 188 MHD_destroy_post_processor (pp); in test_multipart_garbage() 201 struct MHD_PostProcessor *pp; in test_multipart_splits() local [all …]
|
/external/curl/lib/ |
D | pingpong.c | 47 long Curl_pp_state_timeout(struct pingpong *pp) in Curl_pp_state_timeout() argument 49 struct connectdata *conn = pp->conn; in Curl_pp_state_timeout() 54 data->set.server_response_timeout: pp->response_time; in Curl_pp_state_timeout() 64 Curl_tvdiff(Curl_tvnow(), pp->response); /* spent time */ in Curl_pp_state_timeout() 81 CURLcode Curl_pp_statemach(struct pingpong *pp, bool block) in Curl_pp_statemach() argument 83 struct connectdata *conn = pp->conn; in Curl_pp_statemach() 87 long timeout_ms = Curl_pp_state_timeout(pp); in Curl_pp_statemach() 104 if(Curl_pp_moredata(pp)) in Curl_pp_statemach() 107 else if(!pp->sendleft && Curl_ssl_data_pending(conn, FIRSTSOCKET)) in Curl_pp_statemach() 111 rc = Curl_socket_ready(pp->sendleft?CURL_SOCKET_BAD:sock, /* reading */ in Curl_pp_statemach() [all …]
|
D | pingpong.h | 84 CURLcode Curl_pp_statemach(struct pingpong *pp, bool block); 87 void Curl_pp_init(struct pingpong *pp); 91 long Curl_pp_state_timeout(struct pingpong *pp); 104 CURLcode Curl_pp_sendf(struct pingpong *pp, 117 CURLcode Curl_pp_vsendf(struct pingpong *pp, 127 struct pingpong *pp, 132 CURLcode Curl_pp_flushsend(struct pingpong *pp); 135 CURLcode Curl_pp_disconnect(struct pingpong *pp); 137 int Curl_pp_getsock(struct pingpong *pp, curl_socket_t *socks, 148 bool Curl_pp_moredata(struct pingpong *pp);
|
/external/blktrace/btt/ |
D | plat.c | 33 struct plat_info *pp; in plat_alloc() local 37 pp = malloc(sizeof(*pp)); in plat_alloc() 38 pp->nl = 0; in plat_alloc() 39 pp->first_ts = pp->last_ts = pp->tl = -1.0; in plat_alloc() 43 if ((pp->fp = my_fopen(oname, "w")) == NULL) { in plat_alloc() 47 add_file(pp->fp, oname); in plat_alloc() 49 return pp; in plat_alloc() 54 struct plat_info *pp = info; in plat_free() local 56 if (pp == NULL) return; in plat_free() 58 if (pp->first_ts != -1.0) { in plat_free() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
D | enh_upsample.c | 33 const int16_t *pp; in WebRtcIlbcfix_EnhUpsample() local 40 pp=WebRtcIlbcfix_kEnhPolyPhaser[j]+1; in WebRtcIlbcfix_EnhUpsample() 42 *pu11 = (*ps--) * *pp++; in WebRtcIlbcfix_EnhUpsample() 43 *pu11 += (*ps--) * *pp++; in WebRtcIlbcfix_EnhUpsample() 44 *pu11 += (*ps--) * *pp++; in WebRtcIlbcfix_EnhUpsample() 47 pp=WebRtcIlbcfix_kEnhPolyPhaser[j]+1; in WebRtcIlbcfix_EnhUpsample() 49 *pu11 = (*ps--) * *pp++; in WebRtcIlbcfix_EnhUpsample() 50 *pu11 += (*ps--) * *pp++; in WebRtcIlbcfix_EnhUpsample() 51 *pu11 += (*ps--) * *pp++; in WebRtcIlbcfix_EnhUpsample() 52 *pu11 += (*ps--) * *pp++; in WebRtcIlbcfix_EnhUpsample() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-common.cc | 614 parse_space (const char **pp, const char *end) in parse_space() argument 616 while (*pp < end && ISSPACE (**pp)) in parse_space() 617 (*pp)++; in parse_space() 622 parse_char (const char **pp, const char *end, char c) in parse_char() argument 624 parse_space (pp, end); in parse_char() 626 if (*pp == end || **pp != c) in parse_char() 629 (*pp)++; in parse_char() 634 parse_uint (const char **pp, const char *end, unsigned int *pv) in parse_uint() argument 637 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); in parse_uint() 638 strncpy (buf, *pp, len); in parse_uint() [all …]
|
/external/swiftshader/src/OpenGL/compiler/preprocessor/ |
D | Tokenizer.l | 53 typedef pp::SourceLocation YYLTYPE; 69 pp::Input* input = &yyextra->input; \ 70 pp::Input::Location* scanLoc = &yyextra->scanLoc; \ 125 return yyextra->lineStart ? pp::Token::PP_HASH : pp::Token::PP_OTHER; 130 return pp::Token::IDENTIFIER; 135 return pp::Token::CONST_INT; 140 return pp::Token::CONST_FLOAT; 147 return pp::Token::PP_NUMBER; 152 return pp::Token::OP_INC; 156 return pp::Token::OP_DEC; [all …]
|
D | ExpressionParser.y | 67 pp::Diagnostics* diagnostics; 68 pp::Lexer* lexer; 69 pp::Token* token; 186 context->diagnostics->report(pp::Diagnostics::DIVISION_BY_ZERO, 205 context->diagnostics->report(pp::Diagnostics::DIVISION_BY_ZERO, 245 pp::Token* token = context->token; 248 case pp::Token::CONST_INT: 253 context->diagnostics->report(pp::Diagnostics::INTEGER_OVERFLOW, 260 case pp::Token::IDENTIFIER: 266 context->diagnostics->report(pp::Diagnostics::UNDEFINED_IDENTIFIER, [all …]
|
/external/pdfium/third_party/libtiff/ |
D | tif_getimage.c | 1213 unsigned char* pp \ 1228 *cp++ = PALmap[*pp][0]; in DECLAREContigPutFunc() 1229 pp += samplesperpixel; in DECLAREContigPutFunc() 1232 pp += fromskew; in DECLAREContigPutFunc() 1247 UNROLL2(w, bw = PALmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc() 1249 pp += fromskew; in DECLAREContigPutFunc() 1264 UNROLL4(w, bw = PALmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc() 1266 pp += fromskew; in DECLAREContigPutFunc() 1281 UNROLL8(w, bw = PALmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc() 1283 pp += fromskew; in DECLAREContigPutFunc() [all …]
|
/external/scrypt/lib/util/ |
D | sysendian.h | 48 be32dec(const void *pp) in be32dec() argument 50 const uint8_t *p = (uint8_t const *)pp; in be32dec() 57 be32enc(void *pp, uint32_t x) in be32enc() argument 59 uint8_t * p = (uint8_t *)pp; in be32enc() 68 be64dec(const void *pp) in be64dec() argument 70 const uint8_t *p = (uint8_t const *)pp; in be64dec() 79 be64enc(void *pp, uint64_t x) in be64enc() argument 81 uint8_t * p = (uint8_t *)pp; in be64enc() 94 le32dec(const void *pp) in le32dec() argument 96 const uint8_t *p = (uint8_t const *)pp; in le32dec() [all …]
|
/external/swiftshader/src/Shader/ |
D | ShaderCore.hpp | 88 Float4 exponential2(RValue<Float4> x, bool pp = false); 89 Float4 logarithm2(RValue<Float4> x, bool abs, bool pp = false); 90 Float4 exponential(RValue<Float4> x, bool pp = false); 91 Float4 logarithm(RValue<Float4> x, bool abs, bool pp = false); 92 Float4 power(RValue<Float4> x, RValue<Float4> y, bool pp = false); 93 …Float4 reciprocal(RValue<Float4> x, bool pp = false, bool finite = false, bool exactAtPow2 = false… 94 Float4 reciprocalSquareRoot(RValue<Float4> x, bool abs, bool pp = false); 96 Float4 sine_pi(RValue<Float4> x, bool pp = false); // limited to [-pi, pi] range 97 Float4 cosine_pi(RValue<Float4> x, bool pp = false); // limited to [-pi, pi] range 98 Float4 sine(RValue<Float4> x, bool pp = false); [all …]
|
/external/clang/test/SemaCXX/ |
D | qualification-conversion.cpp | 3 int* quals2(int const * const * pp); 6 void test_quals(int * p, int * * pp, int * * * ppp) { in test_quals() argument 7 int const * const * pp2 = pp; in test_quals() 9 quals2(pp); in test_quals() 15 void mquals2(int const A::* const A::*pp); 18 void test_mquals(int A::*p, int A::* A::*pp, int A::* A::* A::*ppp) { in test_mquals() argument 19 int const A::* const A::* pp2 = pp; in test_mquals() 21 mquals2(pp); in test_mquals() 26 void aquals2(int * const (*pp)[1]); 29 void test_aquals(int (*p)[1], int * (*pp)[1], int * (*pp2)[1]) { in test_aquals() [all …]
|
/external/pdfium/third_party/libpng16/arm/ |
D | arm_init.c | 57 png_init_filter_functions_neon(png_structp pp, unsigned int bpp) in png_init_filter_functions_neon() argument 71 switch ((pp->options >> PNG_ARM_NEON) & 3) in png_init_filter_functions_neon() 85 no_neon = !png_have_neon(pp); in png_init_filter_functions_neon() 116 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up_neon; in png_init_filter_functions_neon() 120 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_neon; in png_init_filter_functions_neon() 121 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_neon; in png_init_filter_functions_neon() 122 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_neon() 128 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_neon; in png_init_filter_functions_neon() 129 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_neon; in png_init_filter_functions_neon() 130 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_neon()
|
/external/skia/third_party/libpng/arm/ |
D | arm_init.c | 57 png_init_filter_functions_neon(png_structp pp, unsigned int bpp) in png_init_filter_functions_neon() argument 71 switch ((pp->options >> PNG_ARM_NEON) & 3) in png_init_filter_functions_neon() 85 no_neon = !png_have_neon(pp); in png_init_filter_functions_neon() 116 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up_neon; in png_init_filter_functions_neon() 120 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_neon; in png_init_filter_functions_neon() 121 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_neon; in png_init_filter_functions_neon() 122 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_neon() 128 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_neon; in png_init_filter_functions_neon() 129 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_neon; in png_init_filter_functions_neon() 130 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_neon()
|
/external/libpng/arm/ |
D | arm_init.c | 57 png_init_filter_functions_neon(png_structp pp, unsigned int bpp) in png_init_filter_functions_neon() argument 71 switch ((pp->options >> PNG_ARM_NEON) & 3) in png_init_filter_functions_neon() 85 no_neon = !png_have_neon(pp); in png_init_filter_functions_neon() 116 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up_neon; in png_init_filter_functions_neon() 120 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_neon; in png_init_filter_functions_neon() 121 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_neon; in png_init_filter_functions_neon() 122 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_neon() 128 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_neon; in png_init_filter_functions_neon() 129 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_neon; in png_init_filter_functions_neon() 130 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_neon()
|
/external/libpng/mips/ |
D | mips_init.c | 58 png_init_filter_functions_msa(png_structp pp, unsigned int bpp) in png_init_filter_functions_msa() argument 67 switch ((pp->options >> PNG_MIPS_MSA) & 3) in png_init_filter_functions_msa() 81 no_msa = !png_have_msa(pp); in png_init_filter_functions_msa() 112 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up_msa; in png_init_filter_functions_msa() 116 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_msa; in png_init_filter_functions_msa() 117 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_msa; in png_init_filter_functions_msa() 118 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = png_read_filter_row_paeth3_msa; in png_init_filter_functions_msa() 123 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_msa; in png_init_filter_functions_msa() 124 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_msa; in png_init_filter_functions_msa() 125 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = png_read_filter_row_paeth4_msa; in png_init_filter_functions_msa()
|
/external/libpng/contrib/libtests/ |
D | pngvalid.c | 1007 store_message(png_store *ps, png_const_structp pp, char *buffer, size_t bufsize, in store_message() argument 1010 if (pp != NULL && pp == ps->pread) in store_message() 1022 else if (pp != NULL && pp == ps->pwrite) in store_message() 1047 store_verbose(png_store *ps, png_const_structp pp, png_const_charp prefix, in store_verbose() argument 1055 (void)store_message(ps, pp, buffer, sizeof buffer, 0, message); in store_verbose() 1062 store_log(png_store* ps, png_const_structp pp, png_const_charp message, in store_log() argument 1071 store_message(ps, pp, ps->error, sizeof ps->error, 0, message); in store_log() 1074 store_verbose(ps, pp, is_error ? "error: " : "warning: ", message); in store_log() 1096 png_const_structp pp = ppIn; in store_error() local 1097 png_store *ps = voidcast(png_store*, png_get_error_ptr(pp)); in store_error() [all …]
|
/external/iproute2/tc/ |
D | m_gact.c | 103 struct tc_gact_p pp; in parse_gact() local 139 pp.ptype = PGACT_NETRAND; in parse_gact() 142 pp.ptype = PGACT_DETERM; in parse_gact() 150 pp.paction = action; in parse_gact() 157 if (get_u16(&pp.pval, *argv, 10)) { in parse_gact() 158 fprintf(stderr, "Illegal probability val 0x%x\n",pp.pval); in parse_gact() 161 if (pp.pval > 10000) { in parse_gact() 162 fprintf(stderr, "Illegal probability val 0x%x\n",pp.pval); in parse_gact() 196 addattr_l(n, MAX_MSG, TCA_GACT_PROB, &pp, sizeof (pp)); in parse_gact() 212 struct tc_gact_p *pp = NULL; in print_gact() local [all …]
|
/external/swiftshader/src/OpenGL/compiler/ |
D | DirectiveHandler.cpp | 49 void TDirectiveHandler::handleError(const pp::SourceLocation& loc, in handleError() 52 mDiagnostics.writeInfo(pp::Diagnostics::PP_ERROR, loc, msg, "", ""); in handleError() 55 void TDirectiveHandler::handlePragma(const pp::SourceLocation& loc, in handlePragma() 86 mDiagnostics.report(pp::Diagnostics::UNRECOGNIZED_PRAGMA, loc, name); in handlePragma() 91 mDiagnostics.writeInfo(pp::Diagnostics::PP_ERROR, loc, in handlePragma() 96 void TDirectiveHandler::handleExtension(const pp::SourceLocation& loc, in handleExtension() 105 mDiagnostics.writeInfo(pp::Diagnostics::PP_ERROR, loc, in handleExtension() 114 mDiagnostics.writeInfo(pp::Diagnostics::PP_ERROR, loc, in handleExtension() 120 mDiagnostics.writeInfo(pp::Diagnostics::PP_ERROR, loc, in handleExtension() 140 pp::Diagnostics::Severity severity = pp::Diagnostics::PP_ERROR; in handleExtension() [all …]
|
/external/boringssl/src/crypto/x509/ |
D | x_x509.c | 218 X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length) in d2i_X509_AUX() argument 220 const unsigned char *q = *pp; in d2i_X509_AUX() 231 length -= q - *pp; in d2i_X509_AUX() 235 *pp = q; in d2i_X509_AUX() 252 static int i2d_x509_aux_internal(X509 *a, unsigned char **pp) in i2d_x509_aux_internal() argument 255 unsigned char *start = pp != NULL ? *pp : NULL; in i2d_x509_aux_internal() 257 assert(pp == NULL || *pp != NULL); in i2d_x509_aux_internal() 264 length = i2d_X509(a, pp); in i2d_x509_aux_internal() 269 tmplen = i2d_X509_CERT_AUX(a->aux, pp); in i2d_x509_aux_internal() 272 *pp = start; in i2d_x509_aux_internal() [all …]
|
D | x_pubkey.c | 188 EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length) in d2i_PUBKEY() argument 192 xpk = d2i_X509_PUBKEY(NULL, pp, length); in d2i_PUBKEY() 206 int i2d_PUBKEY(const EVP_PKEY *a, unsigned char **pp) in i2d_PUBKEY() argument 214 ret = i2d_X509_PUBKEY(xpk, pp); in i2d_PUBKEY() 222 RSA *d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp, long length) in d2i_RSA_PUBKEY() argument 227 q = *pp; in d2i_RSA_PUBKEY() 235 *pp = q; in d2i_RSA_PUBKEY() 243 int i2d_RSA_PUBKEY(const RSA *a, unsigned char **pp) in i2d_RSA_PUBKEY() argument 255 ret = i2d_PUBKEY(pktmp, pp); in i2d_RSA_PUBKEY() 261 DSA *d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length) in d2i_DSA_PUBKEY() argument [all …]
|
/external/syslinux/com32/modules/ |
D | ifplop.c | 118 char **pp; in boot_args() local 122 for (pp = args; *pp; pp++) in boot_args() 123 len += strlen(*pp) + 1; in boot_args() 126 for (pp = args; *pp; pp++) { in boot_args() 127 p = *pp; in boot_args()
|
D | ifcpu64.c | 77 char **pp; in boot_args() local 81 for (pp = args; *pp; pp++) in boot_args() 82 len += strlen(*pp) + 1; in boot_args() 85 for (pp = args; *pp; pp++) { in boot_args() 86 p = *pp; in boot_args()
|
/external/skia/third_party/libpng/contrib/intel/ |
D | intel_init.c | 22 png_init_filter_functions_sse2(png_structp pp, unsigned int bpp) in png_init_filter_functions_sse2() argument 35 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_sse2; in png_init_filter_functions_sse2() 36 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_sse2; in png_init_filter_functions_sse2() 37 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_sse2() 42 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_sse2; in png_init_filter_functions_sse2() 43 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_sse2; in png_init_filter_functions_sse2() 44 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = in png_init_filter_functions_sse2()
|