Home
last modified time | relevance | path

Searched refs:highbyte (Results 1 – 25 of 120) sorted by relevance

12345

/dports/sysutils/fusefs-unionfs/unionfs-fuse-2.2/src/
H A Dstring.c176 unsigned int highbyte = hash & 0xF0000000UL; in elfhash() local
178 if (highbyte != 0) hash ^= (highbyte >> 24); in elfhash()
185 hash &= ~highbyte; in elfhash()
/dports/graphics/exifprobe/exifprobe-2.0.1/aux/
H A Dfindjpeg.c56 int highbyte,lobyte; in main() local
94 while(((highbyte = fgetc(fp)) != EOF) && (ftell(fp) <= end_offset)) in main()
96 if(highbyte != 0xff) in main()
109 if(((highbyte = fgetc(fp)) != EOF) && (ftell(fp) <= end_offset)) in main()
112 if(highbyte != 0xff) in main()
/dports/math/fpc-numlib/fpc-3.2.2/packages/numlib/src/
H A Dtimer.pas22 lowbyte, highbyte, ref: word;
40 highbyte := inport($40);
41 ref := (highbyte shl 8) + lowbyte; {Base for subsequent readings
/dports/math/fpc-numlib/fpc-3.2.2/packages/numlib/tests/
H A Dtimer.pas19 lowbyte, highbyte, ref: word;
37 highbyte := inport($40);
38 ref := (highbyte shl 8) + lowbyte; {Base for subsequent readings
/dports/lang/fpc-source/fpc-3.2.2/packages/numlib/src/
H A Dtimer.pas22 lowbyte, highbyte, ref: word;
40 highbyte := inport($40);
41 ref := (highbyte shl 8) + lowbyte; {Base for subsequent readings
/dports/lang/fpc-source/fpc-3.2.2/packages/numlib/tests/
H A Dtimer.pas19 lowbyte, highbyte, ref: word;
37 highbyte := inport($40);
38 ref := (highbyte shl 8) + lowbyte; {Base for subsequent readings
/dports/games/libretro-snes9x2005/snes9x2005-218be8e/source/
H A Dppu.h304 uint8_t lowbyte, highbyte; in REGISTER_2104() local
307 highbyte = byte; in REGISTER_2104()
311 if (lowbyte != PPU.OAMData [addr] || highbyte != PPU.OAMData [addr + 1]) in REGISTER_2104()
315 PPU.OAMData [addr + 1] = highbyte; in REGISTER_2104()
322 PPU.OBJ[addr].Palette = (highbyte >> 1) & 7; in REGISTER_2104()
323 PPU.OBJ[addr].Priority = (highbyte >> 4) & 3; in REGISTER_2104()
324 PPU.OBJ[addr].HFlip = (highbyte >> 6) & 1; in REGISTER_2104()
325 PPU.OBJ[addr].VFlip = (highbyte >> 7) & 1; in REGISTER_2104()
334 PPU.OBJ[addr].VPos = highbyte; in REGISTER_2104()
/dports/astro/opencpn/OpenCPN-5.2.4/plugins/chartdldr_pi/src/unarr/rar/
H A Dparse-rar.c118 uint8_t highbyte, flagbyte, flagbits, size, length, i; in rar_conv_unicode_to_utf8() local
132 highbyte = *in++; in rar_conv_unicode_to_utf8()
151 out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | *in++, out, end_out - out); in rar_conv_unicode_to_utf8()
167 …out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | (data[size] + (correction & 0xFF)), out, e… in rar_conv_unicode_to_utf8()
/dports/graphics/evince/evince-41.3/cut-n-paste/unarr/rar/
H A Dparse-rar.c118 uint8_t highbyte, flagbyte, flagbits, size, length, i; in rar_conv_unicode_to_utf8() local
132 highbyte = *in++; in rar_conv_unicode_to_utf8()
151 out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | *in++, out, end_out - out); in rar_conv_unicode_to_utf8()
167 …out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | (data[size] + (correction & 0xFF)), out, e… in rar_conv_unicode_to_utf8()
/dports/archivers/unarr/unarr-1.0.1/rar/
H A Dparse-rar.c118 uint8_t highbyte, flagbyte, flagbits, size, length, i; in rar_conv_unicode_to_utf8() local
132 highbyte = *in++; in rar_conv_unicode_to_utf8()
151 out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | *in++, out, end_out - out); in rar_conv_unicode_to_utf8()
167 …out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | (data[size] + (correction & 0xFF)), out, e… in rar_conv_unicode_to_utf8()
/dports/graphics/peruse/peruse-8d1de5f4a7c4a6ca7444b0c55cb9aaa44a982a78/src/qtquick/karchive-rar/unarr/rar/
H A Dparse-rar.c118 uint8_t highbyte, flagbyte, flagbits, size, length, i; in rar_conv_unicode_to_utf8() local
132 highbyte = *in++; in rar_conv_unicode_to_utf8()
151 out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | *in++, out, end_out - out); in rar_conv_unicode_to_utf8()
167 …out += ar_conv_rune_to_utf8(((uint16_t)highbyte << 8) | (data[size] + (correction & 0xFF)), out, e… in rar_conv_unicode_to_utf8()
/dports/games/libretro-snes9x/snes9x-73aa348/
H A Dppu.h285 uint8 highbyte = Byte; in REGISTER_2104() local
289 if (lowbyte != PPU.OAMData[addr] || highbyte != PPU.OAMData[addr + 1]) in REGISTER_2104()
293 PPU.OAMData[addr + 1] = highbyte; in REGISTER_2104()
300 PPU.OBJ[addr].Palette = (highbyte >> 1) & 7; in REGISTER_2104()
301 PPU.OBJ[addr].Priority = (highbyte >> 4) & 3; in REGISTER_2104()
302 PPU.OBJ[addr].HFlip = (highbyte >> 6) & 1; in REGISTER_2104()
303 PPU.OBJ[addr].VFlip = (highbyte >> 7) & 1; in REGISTER_2104()
311 PPU.OBJ[addr].VPos = highbyte; in REGISTER_2104()
/dports/emulators/snes9x-gtk/snes9x-1.54.1/
H A Dppu.h463 uint8 highbyte = Byte; in REGISTER_2104() local
467 if (lowbyte != PPU.OAMData[addr] || highbyte != PPU.OAMData[addr + 1]) in REGISTER_2104()
471 PPU.OAMData[addr + 1] = highbyte; in REGISTER_2104()
478 PPU.OBJ[addr].Palette = (highbyte >> 1) & 7; in REGISTER_2104()
479 PPU.OBJ[addr].Priority = (highbyte >> 4) & 3; in REGISTER_2104()
480 PPU.OBJ[addr].HFlip = (highbyte >> 6) & 1; in REGISTER_2104()
481 PPU.OBJ[addr].VFlip = (highbyte >> 7) & 1; in REGISTER_2104()
489 PPU.OBJ[addr].VPos = highbyte; in REGISTER_2104()
/dports/games/libretro-hatari/hatari-561c07e/src/
H A Dvideo.c2736 Uint8 r,g,b, lowbyte, highbyte; in Video_UpdateTTPalette() local
2773 highbyte = IoMem_ReadByte(ttpalette++); in Video_UpdateTTPalette()
2775 g = (highbyte & 0xf0); in Video_UpdateTTPalette()
2776 b = (highbyte & 0x0f) << 4; in Video_UpdateTTPalette()
2780 r = g = b = highbyte; in Video_UpdateTTPalette()
2788 g = (highbyte & 0xf0); in Video_UpdateTTPalette()
2789 b = (highbyte & 0x0f) << 4; in Video_UpdateTTPalette()
2792 r = g = b = highbyte; in Video_UpdateTTPalette()
2805 g = (highbyte & 0xf0); in Video_UpdateTTPalette()
2806 b = (highbyte & 0x0f) << 4; in Video_UpdateTTPalette()
[all …]
/dports/audio/goattracker/goattracker-2.76/examples/src/
H A Dexample2.s6 ; Y = sound effect address highbyte,
/dports/devel/cc65/cc65-2.19/libsrc/c64/joy/
H A Dc64-hitjoy.s95 sty $dd05 ; cia2 timer a highbyte
96 sty $dc05 ; cia1 timer a highbyte
/dports/lang/gnatdroid-binutils-x86/binutils-2.27/opcodes/
H A Darc-dis.c707 unsigned int lowbyte, highbyte; in print_insn_arc() local
722 highbyte = ((info->endian == BFD_ENDIAN_LITTLE) ? 0 : 1); in print_insn_arc()
811 insn_len = arc_insn_length (buffer[lowbyte], buffer[highbyte], info); in print_insn_arc()
816 insn[0] = (buffer[lowbyte] << 8) | buffer[highbyte]; in print_insn_arc()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/binutils/opcodes/
H A Dcris-dis.c760 unsigned int highbyte = (number >> 24) & 0xff; local
768 && (highbyte == ((addr >> 24) & 0xff)
769 || (highbyte != 0 && highbyte != 0xff)
/dports/lang/gnatdroid-binutils/binutils-2.27/opcodes/
H A Darc-dis.c707 unsigned int lowbyte, highbyte; in print_insn_arc() local
722 highbyte = ((info->endian == BFD_ENDIAN_LITTLE) ? 0 : 1); in print_insn_arc()
811 insn_len = arc_insn_length (buffer[lowbyte], buffer[highbyte], info); in print_insn_arc()
816 insn[0] = (buffer[lowbyte] << 8) | buffer[highbyte]; in print_insn_arc()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/binutils/opcodes/
H A Dcris-dis.c760 unsigned int highbyte = (number >> 24) & 0xff;
768 && (highbyte == ((addr >> 24) & 0xff)
769 || (highbyte != 0 && highbyte != 0xff)
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/sti/
H A Dsti_dvo.c55 u32 highbyte; member
65 .highbyte = DVO_LUT_CB_B,
270 writel(config->highbyte, dvo->regs + DVO_LUT_PROG_HIGH); in sti_dvo_pre_enable()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/sti/
H A Dsti_dvo.c55 u32 highbyte; member
65 .highbyte = DVO_LUT_CB_B,
270 writel(config->highbyte, dvo->regs + DVO_LUT_PROG_HIGH); in sti_dvo_pre_enable()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/sti/
H A Dsti_dvo.c55 u32 highbyte; member
65 .highbyte = DVO_LUT_CB_B,
270 writel(config->highbyte, dvo->regs + DVO_LUT_PROG_HIGH); in sti_dvo_pre_enable()
/dports/net-im/prosody/prosody-0.11.13/net/
H A Ddns.lua86 local function highbyte(i) -- - - - - - - - - - - - - - - - - - - highbyte function
114 local word = string.char(highbyte(i), i%0x100);
353 highbyte(o.id), o.id %0x100,
356 highbyte(o.qdcount), o.qdcount %0x100,
357 highbyte(o.ancount), o.ancount %0x100,
358 highbyte(o.nscount), o.nscount %0x100,
359 highbyte(o.arcount), o.arcount %0x100
/dports/devel/cc65/cc65-2.19/libsrc/apple2/extra/
H A Diobuf-0800.s20 ; Convert end address highbyte to table index

12345