Home
last modified time | relevance | path

Searched refs:llval (Results 1 – 2 of 2) sorted by relevance

/PHP-7.4/ext/mysqli/
H A Dmysqli.c1160 my_ulonglong llval; in php_mysqli_fetch_into_hash_aux() local
1163 case 8:llval = (my_ulonglong) bit_uint8korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1164 case 7:llval = (my_ulonglong) bit_uint7korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1165 case 6:llval = (my_ulonglong) bit_uint6korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1166 case 5:llval = (my_ulonglong) bit_uint5korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1167 case 4:llval = (my_ulonglong) bit_uint4korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1168 case 3:llval = (my_ulonglong) bit_uint3korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1169 case 2:llval = (my_ulonglong) bit_uint2korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1170 case 1:llval = (my_ulonglong) uint1korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1176 …ql_fetch_field_direct(result, i)->flags & UNSIGNED_FLAG)? MYSQLI_LLU_SPEC : MYSQLI_LL_SPEC, llval); in php_mysqli_fetch_into_hash_aux()
H A Dmysqli_api.c951 my_ulonglong llval; local
1039 case 8:llval = (my_ulonglong) bit_uint8korr(stmt->result.buf[i].val);break;
1040 case 7:llval = (my_ulonglong) bit_uint7korr(stmt->result.buf[i].val);break;
1041 case 6:llval = (my_ulonglong) bit_uint6korr(stmt->result.buf[i].val);break;
1046 case 1:llval = (my_ulonglong) uint1korr(stmt->result.buf[i].val);break;
1051 llval= *(my_ulonglong *) stmt->result.buf[i].val;
1054 if (uns && llval > 9223372036854775807L) {
1056 if ((uns && llval > L64(2147483647)) ||
1057 (!uns && (( L64(2147483647) < (my_longlong) llval) ||
1058 (L64(-2147483648) > (my_longlong) llval))))
[all …]

Completed in 14 milliseconds