Lines Matching refs:cast_option_buffer
248 zval cast_option_buffer; in PHP_FUNCTION() local
249 MAKE_COPY_ZVAL(option_buffer, &cast_option_buffer); in PHP_FUNCTION()
250 convert_to_long(&cast_option_buffer); in PHP_FUNCTION()
251 new_cost = Z_LVAL(cast_option_buffer); in PHP_FUNCTION()
252 zval_dtor(&cast_option_buffer); in PHP_FUNCTION()
328 zval cast_option_buffer; in PHP_FUNCTION() local
329 MAKE_COPY_ZVAL(option_buffer, &cast_option_buffer); in PHP_FUNCTION()
330 convert_to_long(&cast_option_buffer); in PHP_FUNCTION()
331 cost = Z_LVAL(cast_option_buffer); in PHP_FUNCTION()
332 zval_dtor(&cast_option_buffer); in PHP_FUNCTION()
367 zval cast_option_buffer; in PHP_FUNCTION() local
368 MAKE_COPY_ZVAL(option_buffer, &cast_option_buffer); in PHP_FUNCTION()
369 convert_to_string(&cast_option_buffer); in PHP_FUNCTION()
370 if (Z_TYPE(cast_option_buffer) == IS_STRING) { in PHP_FUNCTION()
371 buffer = estrndup(Z_STRVAL(cast_option_buffer), Z_STRLEN(cast_option_buffer)); in PHP_FUNCTION()
372 buffer_len_int = Z_STRLEN(cast_option_buffer); in PHP_FUNCTION()
373 zval_dtor(&cast_option_buffer); in PHP_FUNCTION()
376 zval_dtor(&cast_option_buffer); in PHP_FUNCTION()