Searched refs:struct_type (Results 1 – 2 of 2) sorted by relevance
/php-src/Zend/ |
H A D | zend_ini.h | 178 #define STD_ZEND_INI_ENTRY(name, default_value, modifiable, on_modify, property_name, struct_type, … argument 179 …ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, prope… 180 …NI_ENTRY_EX(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr, di… argument 181 …ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, pr… 182 #define STD_ZEND_INI_BOOLEAN(name, default_value, modifiable, on_modify, property_name, struct_type… argument 185 #define STD_ZEND_INI_ENTRY(name, default_value, modifiable, on_modify, property_name, struct_type, … 186 …ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, prope… 187 …NI_ENTRY_EX(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr, di… 188 …ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, pr… 189 #define STD_ZEND_INI_BOOLEAN(name, default_value, modifiable, on_modify, property_name, struct_type… [all …]
|
/php-src/ext/ffi/ |
H A D | ffi.c | 6112 if (type == struct_type) { 6133 ZEND_ASSERT(struct_type && struct_type->kind == ZEND_FFI_TYPE_STRUCT); 6143 struct_type->align = MAX(struct_type->align, MAX(field_type->align, field_dcl->align)); 6147 struct_type->size = MAX(struct_type->size, field_type->size); 6178 ZEND_ASSERT(struct_type && struct_type->kind == ZEND_FFI_TYPE_STRUCT); 6229 struct_type->size = MAX(struct_type->size, field_type->size); 6245 ZEND_ASSERT(struct_type && struct_type->kind == ZEND_FFI_TYPE_STRUCT); 6290 struct_type->align = MAX(struct_type->align, sizeof(uint32_t)); 6297 struct_type->size = MAX(struct_type->size, (bits->u64 + 7) / 8); 6299 struct_type->size = MAX(struct_type->size, ((bits->u64 + 31) / 32) * 4); [all …]
|
Completed in 293 milliseconds