MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / putSInt64

Method putSInt64

src/jrd/svc.cpp:489–502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

487}
488
489void Service::putSInt64(char tag, SINT64 val)
490{
491 UCHAR buf[9];
492 buf[0] = tag;
493 buf[1] = val;
494 buf[2] = val >> 8;
495 buf[3] = val >> 16;
496 buf[4] = val >> 24;
497 buf[5] = val >> 32;
498 buf[6] = val >> 40;
499 buf[7] = val >> 48;
500 buf[8] = val >> 56;
501 enqueue(buf, sizeof buf);
502}
503
504void Service::putChar(char tag, char val)
505{

Callers 2

TDR_list_limboFunction · 0.45
print_descriptionFunction · 0.45

Calls 1

enqueueFunction · 0.70

Tested by

no test coverage detected