| /PHP_5_3/ext/standard/ |
| H A D | crypt_blowfish.c | 469 tmp1 = data.ctx.S[3][tmp1]; \ 470 tmp2 = data.ctx.S[2][tmp2]; \ 471 tmp3 = data.ctx.S[1][tmp3]; \ 472 tmp3 += data.ctx.S[0][tmp4]; \ 474 R ^= data.ctx.P[N + 1]; \ 490 tmp1 = BF_INDEX(data.ctx.S[3], tmp1); \ 491 tmp2 = BF_INDEX(data.ctx.S[2], tmp2); \ 492 tmp3 = BF_INDEX(data.ctx.S[1], tmp3); \ 493 tmp3 += BF_INDEX(data.ctx.S[0], tmp4); \ 495 R ^= data.ctx 660 BF_ctx ctx; member in struct:__anon430 [all...] |
| H A D | md5.c | 174 (ctx->block[(n)] = \ 180 (ctx->block[(n)]) 187 static const void *body(PHP_MD5_CTX *ctx, const void *data, size_t size) argument 195 a = ctx->a; 196 b = ctx->b; 197 c = ctx->c; 198 d = ctx->d; 286 ctx->a = a; 287 ctx->b = b; 288 ctx 294 PHP_MD5Init(PHP_MD5_CTX *ctx) argument 305 PHP_MD5Update(PHP_MD5_CTX *ctx, const void *data, size_t size) argument 340 PHP_MD5Final(unsigned char *result, PHP_MD5_CTX *ctx) argument [all...] |
| H A D | php_crypt_r.c | 129 HCRYPTHASH ctx, ctx1; local 166 if(!CryptCreateHash(hCryptProv, CALG_MD5, 0, 0, &ctx)) { 171 if(!CryptHashData(ctx, (BYTE *)pw, pwl, 0)) { 176 if(!CryptHashData(ctx, magic_md5, magic_md5_len, 0)) { 181 if(!CryptHashData( ctx, (BYTE *)sp, sl, 0)) { 205 CryptHashData(ctx, final, (DWORD)(pl > 16 ? 16 : pl), 0); 214 CryptHashData(ctx, (const BYTE *)final, 1, 0); 216 CryptHashData(ctx, (const BYTE *)pw, 1, 0); 235 /* Fetch the ctx hash value */ 236 CryptGetHashParam(ctx, HP_HASHVA 330 PHP_MD5_CTX ctx, ctx1; local [all...] |
| H A D | url_scanner_ex.c | 49 url_adapt_state_ex_t *ctx; local 54 ctx = &BG(url_adapt_state_ex); 58 if (ctx->tags) 59 zend_hash_destroy(ctx->tags); 61 ctx->tags = malloc(sizeof(HashTable)); 62 if (!ctx->tags) { 66 zend_hash_init(ctx->tags, 0, NULL, NULL, 1); 84 zend_hash_add(ctx->tags, key, keylen, val, strlen(val)+1, NULL); 215 static inline void tag_arg(url_adapt_state_ex_t *ctx, char quotes, char type TSRMLS_DC) argument 219 if (strncasecmp(ctx 338 xx_mainloop(url_adapt_state_ex_t *ctx, const char *newdata, size_t newlen TSRMLS_DC) argument 946 url_adapt_state_ex_t *ctx; local 971 url_adapt_state_ex_t *ctx; local 982 url_adapt_state_ex_t *ctx; local 1006 url_adapt_state_ex_t *ctx = &BG(url_adapt_state_ex); local [all...] |
| /PHP_5_3/ext/zip/lib/ |
| H A D | zip_source_crc.c | 59 struct crc *ctx; 66 if ((ctx=(struct crc *)malloc(sizeof(*ctx))) == NULL) { 71 ctx->validate = validate; 73 return zip_source_layered(za, src, crc_read, ctx); 83 struct crc *ctx; 86 ctx = (struct crc *)_ctx; 90 ctx->eof = 0; 91 ctx->crc = crc32(0, NULL, 0); 92 ctx 57 struct crc *ctx; local 80 struct crc *ctx; local [all...] |
| H A D | zip_source_deflate.c | 69 struct deflate *ctx; 77 if ((ctx=(struct deflate *)malloc(sizeof(*ctx))) == NULL) { 82 ctx->e[0] = ctx->e[1] = 0; 83 ctx->eof = 0; 86 ctx->mem_level = TORRENT_MEM_LEVEL; 88 ctx->mem_level = MAX_MEM_LEVEL; 94 ctx)) == NULL) { 95 deflate_free(ctx); 67 struct deflate *ctx; local 103 compress_read(struct zip_source *src, struct deflate *ctx, void *data, zip_uint64_t len) argument 178 decompress_read(struct zip_source *src, struct deflate *ctx, void *data, zip_uint64_t len) argument 251 struct deflate *ctx; local 322 struct deflate *ctx; local 390 deflate_free(struct deflate *ctx) argument [all...] |
| H A D | zip_source_pkware.c | 74 struct trad_pkware *ctx; 89 if ((ctx=(struct trad_pkware *)malloc(sizeof(*ctx))) == NULL) { 94 ctx->e[0] = ctx->e[1] = 0; 96 ctx->key[0] = KEY0; 97 ctx->key[1] = KEY1; 98 ctx->key[2] = KEY2; 99 decrypt(ctx, NULL, (const zip_uint8_t *)password, strlen(password), 1); 101 if ((s2=zip_source_layered(za, src, pkware_decrypt, ctx)) 71 struct trad_pkware *ctx; local 109 decrypt(struct trad_pkware *ctx, zip_uint8_t *out, const zip_uint8_t *in, zip_uint64_t len, int update_only) argument 141 decrypt_header(struct zip_source *src, struct trad_pkware *ctx) argument 184 struct trad_pkware *ctx; local 238 pkware_free(struct trad_pkware *ctx) argument [all...] |
| /PHP_5_3/pear/ |
| H A D | fetch.php | 64 $ctx = stream_context_create($copt, array("notification" => "stream_notification_callback")); variable 66 $fp = fopen($argv[1], "r", false, $ctx);
|
| /PHP_5_3/sapi/milter/ |
| H A D | php_milter.h | 25 SMFICTX *ctx; member in struct:__anon529
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd_io.c | 34 void Putword (int w, gdIOCtx * ctx) argument 40 (ctx->putBuf) (ctx, (char *) buf, 2); 43 void Putchar (int c, gdIOCtx * ctx) argument 45 (ctx->putC) (ctx, c & 0xff); 48 void gdPutC (const unsigned char c, gdIOCtx * ctx) argument 50 (ctx->putC) (ctx, c); 53 void gdPutWord (int w, gdIOCtx * ctx) argument 61 gdPutInt(int w, gdIOCtx * ctx) argument 71 gdGetC(gdIOCtx * ctx) argument 76 gdGetByte(int *result, gdIOCtx * ctx) argument 85 gdGetWord(int *result, gdIOCtx * ctx) argument 98 gdGetInt(int *result, gdIOCtx * ctx) argument 122 gdPutBuf(const void *buf, int size, gdIOCtx * ctx) argument 129 gdGetBuf(void *buf, int size, gdIOCtx * ctx) argument 134 gdSeek(gdIOCtx * ctx, const int pos) argument 141 gdTell(gdIOCtx * ctx) argument [all...] |
| H A D | gd_io_dp.c | 41 gdIOCtx ctx; member in struct:dpIOCtx 52 static void gdFreeDynamicCtx (struct gdIOCtx *ctx); 58 static int dynamicGetbuf (gdIOCtxPtr ctx, void *buf, int len); 59 static int dynamicGetchar (gdIOCtxPtr ctx); 72 dpIOCtx *ctx; local 75 ctx = (dpIOCtx *) gdMalloc (sizeof (dpIOCtx)); 79 ctx->dp = dp; 81 ctx->ctx.getC = dynamicGetchar; 82 ctx 95 gdDPExtractData(struct gdIOCtx *ctx, int *size) argument 124 gdFreeDynamicCtx(struct gdIOCtx *ctx) argument 140 dynamicTell(struct gdIOCtx *ctx) argument 149 dynamicSeek(struct gdIOCtx *ctx, const int pos) argument 198 dynamicPutbuf(struct gdIOCtx *ctx, const void *buf, int size) argument 216 dynamicPutchar(struct gdIOCtx *ctx, int a) argument 227 dynamicGetbuf(gdIOCtxPtr ctx, void *buf, int len) argument 252 dynamicGetchar(gdIOCtxPtr ctx) argument [all...] |
| H A D | gd_io_file.c | 33 gdIOCtx ctx; member in struct:fileIOCtx 42 static int fileGetchar (gdIOCtx * ctx); 46 static void gdFreeFileCtx (gdIOCtx * ctx); 51 fileIOCtx *ctx; local 53 ctx = (fileIOCtx *) gdMalloc(sizeof (fileIOCtx)); 55 ctx->f = f; 57 ctx->ctx.getC = fileGetchar; 58 ctx->ctx 71 gdFreeFileCtx(gdIOCtx * ctx) argument 77 filePutbuf(gdIOCtx * ctx, const void *buf, int size) argument 86 fileGetbuf(gdIOCtx * ctx, void *buf, int size) argument 94 filePutchar(gdIOCtx * ctx, int a) argument 105 fileGetchar(gdIOCtx * ctx) argument 114 fileSeek(struct gdIOCtx *ctx, const int pos) argument 122 fileTell(struct gdIOCtx *ctx) argument [all...] |
| H A D | gd_io_ss.c | 34 gdIOCtx ctx; member in struct:ssIOCtx 44 static int sourceGetchar (gdIOCtx * ctx); 45 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size); 46 static void sinkPutchar (gdIOCtx * ctx, int a); 47 static void gdFreeSsCtx (gdIOCtx * ctx); 52 ssIOCtxPtr ctx; local 54 ctx = (ssIOCtxPtr) gdMalloc (sizeof (ssIOCtx)); 56 ctx->src = src; 57 ctx->snk = snk; 59 ctx 73 gdFreeSsCtx(gdIOCtx * ctx) argument 79 sourceGetbuf(gdIOCtx * ctx, void *buf, int size) argument 102 sourceGetchar(gdIOCtx * ctx) argument 116 sinkPutbuf(gdIOCtx * ctx, const void *buf, int size) argument 132 sinkPutchar(gdIOCtx * ctx, int a) argument [all...] |
| H A D | gdtest.c | 26 gdIOCtxPtr ctx; local 79 ctx = gdNewDynamicCtx (sz, iptr); 80 im2 = gdImageCreateFromPngCtx (ctx); 85 ctx->gd_free (ctx); 112 ctx = gdNewDynamicCtx (sz, iptr); 113 /*printf("Got ctx %d\n",ctx); */ 114 im2 = gdImageCreateFromGd2Ctx (ctx); 120 ctx [all...] |
| /PHP_5_3/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_cp5022x.c | 573 mbfl_filt_conv_wchar_cp50220_ctx *ctx; local 577 ctx = mbfl_malloc(sizeof(mbfl_filt_conv_wchar_cp50220_ctx)); 578 if (ctx == NULL) { 583 ctx->tl_param.mode = MBFL_FILT_TL_HAN2ZEN_KATAKANA | MBFL_FILT_TL_HAN2ZEN_GLUE; 585 ctx->last = *filt; 586 ctx->last.opaque = ctx; 587 ctx->last.data = filt->data; 590 filt->output_function = (int(*)(int, void *))ctx->last.filter_function; 591 filt->flush_function = (int(*)(void *))ctx 600 mbfl_filt_conv_wchar_cp50220_ctx *ctx; local [all...] |
| /PHP_5_3/ext/curl/ |
| H A D | streams.c | 54 static size_t on_data_available(char *data, size_t size, size_t nmemb, void *ctx) argument 56 php_stream *stream = (php_stream *) ctx; 86 static size_t on_header_available(char *data, size_t size, size_t nmemb, void *ctx) argument 90 php_stream *stream = (php_stream *) ctx;
|
| /PHP_5_3/ext/dom/ |
| H A D | xpath.c | 277 xmlXPathContextPtr ctx, oldctx; local 289 ctx = xmlXPathNewContext(docp); 290 if (ctx == NULL) { 303 xmlXPathRegisterFuncNS (ctx, (const xmlChar *) "functionString", 306 xmlXPathRegisterFuncNS (ctx, (const xmlChar *) "function", 310 intern->ptr = ctx; 311 ctx->userData = (void *)intern; 322 xmlXPathContextPtr ctx; local 326 ctx = (xmlXPathContextPtr) obj->ptr; 328 if (ctx) { [all...] |
| /PHP_5_3/ext/gd/ |
| H A D | gd_ctx.c | 23 #define CTX_PUTC(c,ctx) ctx->putC(ctx, c) 25 static void _php_image_output_putc(struct gdIOCtx *ctx, int c) argument 36 static int _php_image_output_putbuf(struct gdIOCtx *ctx, const void* buf, int l) argument 42 static void _php_image_output_ctxfree(struct gdIOCtx *ctx) argument 44 if(ctx) { 45 efree(ctx); 61 gdIOCtx *ctx; local 105 ctx [all...] |
| /PHP_5_3/ext/oci8/ |
| H A D | oci8_lob.c | 167 php_oci_lob_ctx *ctx = (php_oci_lob_ctx *)ctxp; local 172 if ((*(ctx->lob_len) + lenp) > (ctx->alloc_len)) { 174 *(ctx->lob_data) = NULL; 175 *(ctx->lob_len) = 0; 178 memcpy(*(ctx->lob_data) + *(ctx->lob_len), bufxp, (size_t) lenp); 179 *(ctx->lob_len) += lenp; 180 *(*(ctx->lob_data) + *(ctx 241 php_oci_lob_ctx ctx; local [all...] |
| /PHP_5_3/ext/openssl/ |
| H A D | xp_ssl.c | 41 SSL *php_SSL_new_from_context(SSL_CTX *ctx, php_stream *stream TSRMLS_DC); 52 SSL_CTX *ctx; member in struct:_php_openssl_netstream_data_t 260 if (sslsock->ctx) { 261 SSL_CTX_free(sslsock->ctx); 262 sslsock->ctx = NULL; 374 sslsock->ctx = SSL_CTX_new(method); 375 if (sslsock->ctx == NULL) { 380 SSL_CTX_set_options(sslsock->ctx, SSL_OP_ALL); 389 SSL_CTX_set_options(sslsock->ctx, SSL_OP_NO_TICKET); 394 sslsock->ssl_handle = php_SSL_new_from_context(sslsock->ctx, strea 840 get_sni(php_stream_context *ctx, char *resourcename, long resourcenamelen, int is_persistent TSRMLS_DC) argument [all...] |
| /PHP_5_3/ext/pdo_oci/ |
| H A D | oci_statement.c | 187 static sb4 oci_bind_input_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 *alenp, ub1 *piecep, dvoid **indpp) /* {{{ */ argument 189 struct pdo_bound_param_data *param = (struct pdo_bound_param_data*)ctx; 219 static sb4 oci_bind_output_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 **alenpp, ub1 *piecep, dvoid **indpp, ub2 **rcodepp) /* {{{ */ argument 221 struct pdo_bound_param_data *param = (struct pdo_bound_param_data*)ctx;
|
| /PHP_5_3/main/ |
| H A D | reentrancy.c | 315 do_rand(unsigned long *ctx) argument 317 return ((*ctx = *ctx * 1103515245 + 12345) % ((u_long)PHP_RAND_MAX + 1)); 322 php_rand_r(unsigned int *ctx) argument 324 u_long val = (u_long) *ctx; 325 *ctx = do_rand(&val); 326 return (int) *ctx;
|
| /PHP_5_3/sapi/apache2filter/ |
| H A D | php_functions.c | 48 php_struct *ctx; local 54 ctx = SG(server_context); 55 return ap_sub_req_lookup_uri(filename, ctx->f->r, ctx->f->next); 155 php_struct *ctx; local 161 ctx = SG(server_context); 162 arr = apr_table_elts(ctx->f->r->headers_in); 175 php_struct *ctx; local 181 ctx = SG(server_context); 182 arr = apr_table_elts(ctx 195 php_struct *ctx; local 225 php_struct *ctx; local 253 php_struct *ctx; local [all...] |
| /PHP_5_3/sapi/apache2handler/ |
| H A D | php_functions.c | 61 php_struct *ctx = SG(server_context); local 63 if (!filename || !ctx || !ctx->r) { 67 return ap_sub_req_lookup_uri(filename, ctx->r, ctx->r->output_filters); 175 php_struct *ctx; local 185 ctx = SG(server_context); 186 arr = apr_table_elts(ctx->r->headers_in); 199 php_struct *ctx; local 209 ctx 223 php_struct *ctx; local 255 php_struct *ctx; local 290 php_struct *ctx; local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_xml.c | 72 static void soap_ignorableWhitespace(void *ctx, const xmlChar *ch, int len) argument 76 static void soap_Comment(void *ctx, const xmlChar *value) argument
|