Home
last modified time | relevance | path

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

/PHP-5.4/ext/mysqli/
H A Dmysqli_api.c862 my_ulonglong llval; local
936 case 8:llval = (my_ulonglong) bit_uint8korr(stmt->result.buf[i].val);break;
937 case 7:llval = (my_ulonglong) bit_uint7korr(stmt->result.buf[i].val);break;
938 case 6:llval = (my_ulonglong) bit_uint6korr(stmt->result.buf[i].val);break;
943 case 1:llval = (my_ulonglong) uint1korr(stmt->result.buf[i].val);break;
948 llval= *(my_ulonglong *) stmt->result.buf[i].val;
951 if (uns && llval > 9223372036854775807L) {
953 if ((uns && llval > L64(2147483647)) ||
954 (!uns && (( L64(2147483647) < (my_longlong) llval) ||
955 (L64(-2147483648) > (my_longlong) llval))))
[all …]
H A Dmysqli.c1158 my_ulonglong llval; in php_mysqli_fetch_into_hash_aux() local
1161 case 8:llval = (my_ulonglong) bit_uint8korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1162 case 7:llval = (my_ulonglong) bit_uint7korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1163 case 6:llval = (my_ulonglong) bit_uint6korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1164 case 5:llval = (my_ulonglong) bit_uint5korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1165 case 4:llval = (my_ulonglong) bit_uint4korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1166 case 3:llval = (my_ulonglong) bit_uint3korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1167 case 2:llval = (my_ulonglong) bit_uint2korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1168 case 1:llval = (my_ulonglong) uint1korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1174 …ql_fetch_field_direct(result, i)->flags & UNSIGNED_FLAG)? MYSQLI_LLU_SPEC : MYSQLI_LL_SPEC, llval); in php_mysqli_fetch_into_hash_aux()

Completed in 19 milliseconds