Home
last modified time | relevance | path

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

/PHP-5.5/ext/mysqli/
H A Dmysqli.c1172 my_ulonglong llval; in php_mysqli_fetch_into_hash_aux() local
1175 case 8:llval = (my_ulonglong) bit_uint8korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1176 case 7:llval = (my_ulonglong) bit_uint7korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1177 case 6:llval = (my_ulonglong) bit_uint6korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1178 case 5:llval = (my_ulonglong) bit_uint5korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1179 case 4:llval = (my_ulonglong) bit_uint4korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1180 case 3:llval = (my_ulonglong) bit_uint3korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1181 case 2:llval = (my_ulonglong) bit_uint2korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1182 case 1:llval = (my_ulonglong) uint1korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1188 …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.c997 my_ulonglong llval; local
1085 case 8:llval = (my_ulonglong) bit_uint8korr(stmt->result.buf[i].val);break;
1086 case 7:llval = (my_ulonglong) bit_uint7korr(stmt->result.buf[i].val);break;
1087 case 6:llval = (my_ulonglong) bit_uint6korr(stmt->result.buf[i].val);break;
1092 case 1:llval = (my_ulonglong) uint1korr(stmt->result.buf[i].val);break;
1097 llval= *(my_ulonglong *) stmt->result.buf[i].val;
1100 if (uns && llval > 9223372036854775807L) {
1102 if ((uns && llval > L64(2147483647)) ||
1103 (!uns && (( L64(2147483647) < (my_longlong) llval) ||
1104 (L64(-2147483648) > (my_longlong) llval))))
[all …]

Completed in 16 milliseconds