Searched refs:offsetof (Results 1 – 9 of 9) sorted by relevance
/PHP-5.3/sapi/fpm/fpm/ |
H A D | fpm_php_trace.c | 76 …if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, function_state.function), &l… in fpm_php_trace_dump() 83 …if (0 > fpm_trace_get_strz(buf, buf_size, function + offsetof(zend_function, common.function_name)… in fpm_php_trace_dump() 92 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, op_array), &l)) { in fpm_php_trace_dump() 101 if (0 > fpm_trace_get_strz(buf, buf_size, op_array + offsetof(zend_op_array, filename))) { in fpm_php_trace_dump() 106 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, opline), &l)) { in fpm_php_trace_dump() 114 if (0 > fpm_trace_get_long(opline + offsetof(struct _zend_op, lineno), &l)) { in fpm_php_trace_dump() 123 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, prev_execute_data), &l)) { in fpm_php_trace_dump()
|
H A D | fpm_conf.c | 51 #define GO(field) offsetof(struct fpm_global_config_s, field) 52 #define WPO(field) offsetof(struct fpm_worker_pool_config_s, field)
|
/PHP-5.3/sapi/apache_hooks/ |
H A D | php_apache.c | 39 #undef offsetof 40 #define offsetof(s_type,field) ((size_t)&(((s_type*)0)->field)) macro 297 apache_request_string_slot(offsetof(request_rec, filename), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() 305 apache_request_string_slot(offsetof(request_rec, uri), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() 329 apache_request_string_slot(offsetof(request_rec, args), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() 362 apache_request_string_slot(offsetof(request_rec, handler), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() 432 apache_request_int_slot(offsetof(request_rec, proxyreq), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() 465 apache_request_int_slot(offsetof(request_rec, status), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() 481 apache_request_int_slot(offsetof(request_rec, allowed), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() 536 apache_request_int_slot(offsetof(request_rec, no_cache), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION() [all …]
|
/PHP-5.3/main/ |
H A D | php.h | 445 #ifdef offsetof 446 #define XtOffsetOf(s_type, field) offsetof(s_type, field)
|
/PHP-5.3/Zend/ |
H A D | zend_ini.h | 52 # ifdef offsetof 53 # define XtOffsetOf(s_type, field) offsetof(s_type, field)
|
/PHP-5.3/ext/standard/ |
H A D | crypt_sha256.c | 23 # define __alignof__(type) offsetof (struct { char c; type member;}, member)
|
H A D | crypt_sha512.c | 22 # define __alignof__(type) offsetof (struct { char c; type member;}, member)
|
/PHP-5.3/ext/pcre/pcrelib/ |
H A D | ChangeLog | 4727 6. Corrected definition of offsetof() from change 5 below. 4740 2. Replaced offsetof(real_pcre, code) by offsetof(real_pcre, code[0]) because 4755 + Add a definition of offsetof(), in case there isn't one. (I don't know 4756 the reason behind this - offsetof() is part of the ANSI standard - but
|
/PHP-5.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 7613 #ifndef offsetof 7614 #define offsetof(STRUCTURE,FIELD) ((int)((char*)&((STRUCTURE*)0)->FIELD)) macro 10346 #define EXPR_REDUCEDSIZE offsetof(Expr,iTable) /* Common features */ 10347 #define EXPR_TOKENONLYSIZE offsetof(Expr,pLeft) /* Fewer features */ 16732 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc)); in sqlite3MutexInit() 16734 sizeof(*pTo) - offsetof(sqlite3_mutex_methods, xMutexFree)); in sqlite3MutexInit() 44266 const int nCksum = offsetof(WalIndexHdr, aCksum); 51041 memset(p, 0, offsetof(BtCursor, iPage)); 77574 # define SAVE_SZ (sizeof(Parse) - offsetof(Parse,nVar)) 98072 callFinaliser(db, offsetof(sqlite3_module,xRollback)); [all …]
|
Completed in 342 milliseconds