Searched refs:llval (Results 1 – 2 of 2) sorted by relevance
1160 my_ulonglong llval; in php_mysqli_fetch_into_hash_aux() local1163 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()
946 my_ulonglong llval; local1040 case 8:llval = (my_ulonglong) bit_uint8korr(stmt->result.buf[i].val);break;1041 case 7:llval = (my_ulonglong) bit_uint7korr(stmt->result.buf[i].val);break;1042 case 6:llval = (my_ulonglong) bit_uint6korr(stmt->result.buf[i].val);break;1047 case 1:llval = (my_ulonglong) uint1korr(stmt->result.buf[i].val);break;1052 llval= *(my_ulonglong *) stmt->result.buf[i].val;1055 if (uns && llval > 9223372036854775807L) {1057 if ((uns && llval > L64(2147483647)) ||1058 (!uns && (( L64(2147483647) < (my_longlong) llval) ||1059 (L64(-2147483648) > (my_longlong) llval))))[all …]
Completed in 14 milliseconds