Lines Matching refs:index
197 ZEND_ARG_INFO(0, index)
203 ZEND_ARG_INFO(0, index)
208 ZEND_ARG_INFO(0, index)
1438 long index; local
1442 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zl|b", &a_arg, &index, &set) == FAILURE) {
1448 if (index < 0) {
1454 mpz_setbit(*gmpnum_a, index);
1456 mpz_clrbit(*gmpnum_a, index);
1466 long index; local
1469 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zl", &a_arg, &index) == FAILURE){
1475 if (index < 0) {
1480 mpz_clrbit(*gmpnum_a, index);
1489 long index; local
1492 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zl", &a_arg, &index) == FAILURE){
1498 if (index < 0) {
1503 if (mpz_tstbit(*gmpnum_a, index)) {