Searched refs:op_len (Results 1 – 2 of 2) sorted by relevance
/PHP-8.0/ext/standard/ |
H A D | versioning.c | 207 size_t v1_len, v2_len, op_len = 0; in PHP_FUNCTION() local 214 Z_PARAM_STRING_OR_NULL(op, op_len) in PHP_FUNCTION() 221 if (!strncmp(op, "<", op_len) || !strncmp(op, "lt", op_len)) { in PHP_FUNCTION() 224 if (!strncmp(op, "<=", op_len) || !strncmp(op, "le", op_len)) { in PHP_FUNCTION() 227 if (!strncmp(op, ">", op_len) || !strncmp(op, "gt", op_len)) { in PHP_FUNCTION() 230 if (!strncmp(op, ">=", op_len) || !strncmp(op, "ge", op_len)) { in PHP_FUNCTION() 233 if (!strncmp(op, "==", op_len) || !strncmp(op, "=", op_len) || !strncmp(op, "eq", op_len)) { in PHP_FUNCTION() 236 if (!strncmp(op, "!=", op_len) || !strncmp(op, "<>", op_len) || !strncmp(op, "ne", op_len)) { in PHP_FUNCTION()
|
/PHP-8.0/Zend/ |
H A D | zend_vm_trace_handlers.h | 27 static void zend_vm_trace(const char *op, size_t op_len) in zend_vm_trace() argument 36 len = last_len + 1 + op_len; in zend_vm_trace() 39 memcpy(buf + last_len + 1, op, op_len + 1); in zend_vm_trace() 51 last_len = op_len; in zend_vm_trace()
|
Completed in 8 milliseconds