Home
last modified time | relevance | path

Searched refs:inttemp (Results 1 – 16 of 16) sorted by relevance

/dports/astro/libgal/libgal-0.5.0/date_time/
H A Dgal_days2cal.c64 int i, inttemp, dayofyr; in gal_days2cal() local
86 inttemp = 0 ; in gal_days2cal()
87 while ( dayofyr > inttemp + MTAB[i] && i < 11 ) { in gal_days2cal()
88 inttemp += MTAB[i] ; in gal_days2cal()
93 *id = dayofyr - inttemp ; in gal_days2cal()
/dports/games/libretro-beetle_ngp/beetle-ngp-libretro-74cc0d8/mednafen/hw_cpu/z80-fuse/
H A Dz80.c106 uint16_t inttemp=(0x100*I)+0xff; in z80_interrupt() local
107 PCL = Z80_RB_MACRO(inttemp++); PCH = Z80_RB_MACRO(inttemp); in z80_interrupt()
/dports/astro/marble/marble-21.12.3/src/3rdparty/sgp4/
H A Dsgp4ext.cpp591 int i, inttemp, dayofyr; in days2mdhms() local
601 inttemp = 0; in days2mdhms()
602 while ((dayofyr > inttemp + lmonth[i-1]) && (i < 12)) in days2mdhms()
604 inttemp = inttemp + lmonth[i-1]; in days2mdhms()
608 day = dayofyr - inttemp; in days2mdhms()
/dports/astro/stellarium/stellarium-0.21.3/plugins/Satellites/src/gsatellite/
H A Dsgp4ext.cpp543 int i, inttemp, dayofyr; in days2mdhms() local
553 inttemp = 0; in days2mdhms()
554 while ((dayofyr > inttemp + lmonth[i-1]) && (i < 12)) in days2mdhms()
556 inttemp = inttemp + lmonth[i-1]; in days2mdhms()
560 day = dayofyr - inttemp; in days2mdhms()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dgp100.c32 u32 inttemp = (tsensor & 0x0001fff8); in gp100_temp_get() local
40 return (inttemp >> 8); in gp100_temp_get()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dgp100.c32 u32 inttemp = (tsensor & 0x0001fff8); in gp100_temp_get() local
40 return (inttemp >> 8); in gp100_temp_get()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dgp100.c32 u32 inttemp = (tsensor & 0x0001fff8); in gp100_temp_get() local
40 return (inttemp >> 8); in gp100_temp_get()
/dports/games/libretro-fuse/fuse-libretro-8b51f87/fuse/z80/
H A Dz80.c172 libspectrum_word inttemp=(0x100*I)+0xff; in z80_interrupt() local
173 PCL = readbyte(inttemp++); PCH = readbyte(inttemp); in z80_interrupt()
/dports/devel/z80ex/z80ex-1.1.21/
H A Dz80ex.c247 Z80EX_WORD inttemp; in z80ex_int() local
303 inttemp=(0x100*I)+iv; in z80ex_int()
307 READ_MEM(PCL,inttemp++,13); READ_MEM(PCH,inttemp,16); in z80ex_int()
/dports/emulators/mednafen/mednafen/src/hw_cpu/z80-fuse/
H A Dz80.cpp130 uint16 inttemp=(0x100*I)+0xff; in z80_interrupt() local
131 PCL = Z80_RB_MACRO(inttemp++); PCH = Z80_RB_MACRO(inttemp); in z80_interrupt()
/dports/emulators/fuse/fuse-1.6.0/z80/
H A Dz80.c228 libspectrum_word inttemp=(0x100*I)+0xff; in z80_interrupt() local
229 PCL = readbyte(inttemp++); PCH = readbyte(inttemp); in z80_interrupt()
/dports/graphics/tesseract/tesseract-5.0.0/doc/
H A Dmftraining.1.asc16 files *inttemp* (the shape prototypes), *shapetable*, and *pffmtable*
H A Dcombine_tessdata.1.asc106 lang.inttemp::
/dports/science/gromacs/gromacs-2021.4/src/gromacs/gmxana/
H A Dgmx_wham.cpp598 int i, inttemp, bins, count, ntot; in read_pdo_data() local
754 inttemp = static_cast<int>(temp); in read_pdo_data()
757 if (inttemp < 0) in read_pdo_data()
759 inttemp += bins; in read_pdo_data()
761 else if (inttemp >= bins) in read_pdo_data()
763 inttemp -= bins; in read_pdo_data()
767 if (inttemp >= 0 && inttemp < bins) in read_pdo_data()
769 window->Histo[i][inttemp] += 1.; in read_pdo_data()
/dports/astro/py-sgp4/python-sgp4-2.20/extension/
H A DSGP4.cpp3129 int i, inttemp, dayofyr; in days2mdhms_SGP4() local
3139 inttemp = 0; in days2mdhms_SGP4()
3140 while ((dayofyr > inttemp + lmonth[i]) && (i < 12)) in days2mdhms_SGP4()
3142 inttemp = inttemp + lmonth[i]; in days2mdhms_SGP4()
3146 day = dayofyr - inttemp; in days2mdhms_SGP4()
/dports/graphics/tesseract/tesseract-5.0.0/
H A DChangeLog315 * Fixed load of inttemp for big-endian architectures.