Home
last modified time | relevance | path

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

/PHP-8.1/ext/mysqli/
H A Dmysqli.c1049 my_ulonglong llval; in php_mysqli_fetch_into_hash_aux() local
1052 case 8:llval = (my_ulonglong) bit_uint8korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1053 case 7:llval = (my_ulonglong) bit_uint7korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1054 case 6:llval = (my_ulonglong) bit_uint6korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1055 case 5:llval = (my_ulonglong) bit_uint5korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1056 case 4:llval = (my_ulonglong) bit_uint4korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1057 case 3:llval = (my_ulonglong) bit_uint3korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1058 case 2:llval = (my_ulonglong) bit_uint2korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1059 case 1:llval = (my_ulonglong) uint1korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1066 …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.c941 my_ulonglong llval; local
1026 case 8:llval = (my_ulonglong) bit_uint8korr(stmt->result.buf[i].val);break;
1027 case 7:llval = (my_ulonglong) bit_uint7korr(stmt->result.buf[i].val);break;
1028 case 6:llval = (my_ulonglong) bit_uint6korr(stmt->result.buf[i].val);break;
1033 case 1:llval = (my_ulonglong) uint1korr(stmt->result.buf[i].val);break;
1036 llval= *(my_ulonglong *) stmt->result.buf[i].val;
1039 if (uns && llval > 9223372036854775807L) {
1041 if ((uns && llval > L64(2147483647)) ||
1042 (!uns && (( L64(2147483647) < (my_longlong) llval) ||
1043 (L64(-2147483648) > (my_longlong) llval))))
[all …]

Completed in 19 milliseconds