Searched refs:struct_type (Results 1 – 2 of 2) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_ini.h | 176 #define STD_ZEND_INI_ENTRY(name, default_value, modifiable, on_modify, property_name, struct_type, … argument 177 …ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, prope… 178 …NI_ENTRY_EX(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr, di… argument 179 …ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, pr… 180 #define STD_ZEND_INI_BOOLEAN(name, default_value, modifiable, on_modify, property_name, struct_type… argument 183 #define STD_ZEND_INI_ENTRY(name, default_value, modifiable, on_modify, property_name, struct_type, … 184 …ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, prope… 185 …NI_ENTRY_EX(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr, di… 186 …ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, pr… 187 #define STD_ZEND_INI_BOOLEAN(name, default_value, modifiable, on_modify, property_name, struct_type… [all …]
|
/PHP-8.3/ext/ffi/ |
H A D | ffi.c | 6074 if (type == struct_type) { 6095 ZEND_ASSERT(struct_type && struct_type->kind == ZEND_FFI_TYPE_STRUCT); 6105 struct_type->align = MAX(struct_type->align, MAX(field_type->align, field_dcl->align)); 6109 struct_type->size = MAX(struct_type->size, field_type->size); 6140 ZEND_ASSERT(struct_type && struct_type->kind == ZEND_FFI_TYPE_STRUCT); 6191 struct_type->size = MAX(struct_type->size, field_type->size); 6207 ZEND_ASSERT(struct_type && struct_type->kind == ZEND_FFI_TYPE_STRUCT); 6252 struct_type->align = MAX(struct_type->align, sizeof(uint32_t)); 6259 struct_type->size = MAX(struct_type->size, (bits->u64 + 7) / 8); 6261 struct_type->size = MAX(struct_type->size, ((bits->u64 + 31) / 32) * 4); [all …]
|
Completed in 29 milliseconds