Symbol: get16
sys/arch/m68k/m68k/db_trace.c
509
if (!USERMODE(get16(regp, DSP))) {
sys/dev/stbi/stb_image.c
1596
if (get16(&z->s) != 4) return e("bad DRI len","Corrupt JPEG");
sys/dev/stbi/stb_image.c
1597
z->restart_interval = get16(&z->s);
sys/dev/stbi/stb_image.c
1601
L = get16(&z->s)-2;
sys/dev/stbi/stb_image.c
1619
L = get16(&z->s)-2;
sys/dev/stbi/stb_image.c
1647
skip(&z->s, get16(&z->s)-2);
sys/dev/stbi/stb_image.c
1657
int Ls = get16(&z->s);
sys/dev/stbi/stb_image.c
1683
Lf = get16(s); if (Lf < 11) return e("bad SOF len","Corrupt JPEG"); // JPEG
sys/dev/stbi/stb_image.c
1685
s->img_y = get16(s); if (s->img_y == 0) return e("no header height", "JPEG format not supported: delayed height"); // Legal, but we don't handle it--but neither does IJG
sys/dev/stbi/stb_image.c
1686
s->img_x = get16(s); if (s->img_x == 0) return e("0 width","Corrupt JPEG"); // JPEG requires
sys/dev/stbi/stb_image.c
3032
tc[k] = (uint8) get16(s); // non 8-bit images will be larger
sys/dev/stbi/stb_image.c
3574
get16(s); // discard palette start
sys/dev/stbi/stb_image.c
3575
get16(s); // discard palette length
sys/dev/stbi/stb_image.c
3577
get16(s); // discard x origin
sys/dev/stbi/stb_image.c
3578
get16(s); // discard y origin
sys/dev/stbi/stb_image.c
3579
if ( get16(s) < 1 ) return 0; // test width
sys/dev/stbi/stb_image.c
3580
if ( get16(s) < 1 ) return 0; // test height
sys/dev/stbi/stb_image.c
3894
if (get16(s) != 1)
sys/dev/stbi/stb_image.c
3901
channelCount = get16(s);
sys/dev/stbi/stb_image.c
3910
if (get16(s) != 8)
sys/dev/stbi/stb_image.c
3923
if (get16(s) != 3)
sys/dev/stbi/stb_image.c
3939
compression = get16(s);
sys/dev/stbi/stb_image.c
4206
count = get16(s);
sys/dev/stbi/stb_image.c
4244
x = get16(s);
sys/dev/stbi/stb_image.c
4245
y = get16(s);
sys/dev/stbi/stb_image.c
4250
get16(s); //skip `fields'
sys/dev/stbi/stb_image.c
4251
get16(s); //skip `pad'
sys/dev/stbi/stb_image.c
948
uint32 z = get16(s);
sys/dev/stbi/stb_image.c
949
return (z << 16) + get16(s);
sys/lib/libunwind/AddressSpace.hpp
171
result = get16(addr);
sys/lib/libunwind/AddressSpace.hpp
189
result = (int16_t)get16(addr);
sys/lib/libunwind/DwarfInstructions.hpp
214
value = addressSpace.get16(p);
sys/lib/libunwind/DwarfInstructions.hpp
221
svalue = (int16_t)addressSpace.get16(p);
sys/lib/libunwind/DwarfInstructions.hpp
389
svalue = (int16_t)addressSpace.get16(p);
sys/lib/libunwind/DwarfInstructions.hpp
395
svalue = (int16_t)addressSpace.get16(p);
sys/lib/libunwind/DwarfInstructions.hpp
559
value = addressSpace.get16(value);
sys/lib/libunwind/DwarfParser.hpp
337
codeOffset += (addressSpace.get16(p) * cieInfo.codeAlignFactor);