Searched refs:enum_dcl (Results 1 – 4 of 4) sorted by relevance
/PHP-8.2/ext/ffi/ |
H A D | ffi.g | 320 enumerator_list(zend_ffi_dcl *enum_dcl): 322 enumerator(enum_dcl, &min, &max, &last) 324 enumerator(enum_dcl, &min, &max, &last) 329 enumerator(zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *last): 337 {zend_ffi_add_enum_val(enum_dcl, name, name_len, &val, min, max, last);}
|
H A D | php_ffi.h | 220 void zend_ffi_add_enum_val(zend_ffi_dcl *enum_dcl, const char *name, size_t name_len, zend_ffi_val …
|
H A D | ffi_parser.c | 326 static int parse_enumerator_list(int sym, zend_ffi_dcl *enum_dcl); 327 static int parse_enumerator(int sym, zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *l… 2571 static int parse_enumerator_list(int sym, zend_ffi_dcl *enum_dcl) { in parse_enumerator_list() argument 2578 sym = parse_enumerator(sym, enum_dcl, &min, &max, &last); in parse_enumerator_list() 2612 sym = parse_enumerator(sym, enum_dcl, &min, &max, &last); in parse_enumerator_list() 2620 static int parse_enumerator(int sym, zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *l… in parse_enumerator() argument 2629 zend_ffi_add_enum_val(enum_dcl, name, name_len, &val, min, max, last); in parse_enumerator()
|
H A D | ffi.c | 5856 void zend_ffi_add_enum_val(zend_ffi_dcl *enum_dcl, const char *name, size_t name_len, zend_ffi_val … argument 5861 zend_ffi_type *enum_type = ZEND_FFI_TYPE(enum_dcl->type);
|
Completed in 61 milliseconds