/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/ |
H A D | common.c | 60 while (romp->name || romp->offset || romp->length) in readroms() 62 if (romp->name && romp->name != (char *)-1) in readroms() 65 romp++; in readroms() 76 while (romp->name || romp->offset || romp->length) in readroms() 88 while (romp->name || romp->length) in readroms() 94 if (romp->name || romp->length) in readroms() 113 romp++; in readroms() 318 } while (romp->length && (romp->name == 0 || romp->name == (char *)-1)); in readroms() 388 } while (romp->length && (romp->name == 0 || romp->name == (char *)-1)); in readroms() 449 while (romp->name || romp->offset || romp->length) in printromlist() [all …]
|
H A D | audit.c | 17 if (!romp) return 0; in RomInSet() 19 while (romp->name || romp->offset || romp->length) in RomInSet() 23 while (romp->length) in RomInSet() 28 romp++; in RomInSet() 31 while (romp->length && (romp->name == 0 || romp->name == (char *)-1)); in RomInSet() 91 romp = gamedrv->rom; in AuditRomSet() 104 while (romp->name || romp->offset || romp->length) in AuditRomSet() 106 if (romp->name || romp->length) return 0; /* expecting ROM_REGION */ in AuditRomSet() 108 romp++; in AuditRomSet() 142 romp++; in AuditRomSet() [all …]
|
/dports/emulators/mess/mame-mame0226/src/emu/ |
H A D | romload.cpp | 146 romp = rom_next_file(romp); in do_open_disk() 201 romp++; in rom_first_region() 202 return !ROMENTRY_ISEND(romp) ? romp : nullptr; in rom_first_region() 213 romp++; in rom_next_region() 218 return ROMENTRY_ISEND(romp) ? nullptr : romp; in rom_next_region() 229 romp++; in rom_first_file() 243 romp++; in rom_next_file() 258 while (romp && !ROMENTRY_ISEND(romp) && !ROMENTRY_ISPARAMETER(romp)) in rom_first_parameter() 260 return (romp != nullptr && !ROMENTRY_ISEND(romp)) ? romp : nullptr; in rom_first_parameter() 271 romp++; in rom_next_parameter() [all …]
|
H A D | softlist_dev.cpp | 523 for (rom_entry const *romp = &part.romdata().front(); romp && !ROMENTRY_ISEND(romp); ++romp) in internal_validity_check() local 532 items_since_region = (ROMREGION_ISERASE(romp) || ROMREGION_ISDISKDATA(romp)) ? 1 : 0; in internal_validity_check() 533 last_region_name = romp->name().c_str(); in internal_validity_check() 536 if (romp->name().size() < MIN_TAG_LENGTH) in internal_validity_check() 539 …if (std::find_if_not(romp->name().begin(), romp->name().end(), valid_tag_char) != romp->name().end… in internal_validity_check() 543 current_length = ROMREGION_GETLENGTH(romp); in internal_validity_check() 550 last_name = romp->name().c_str(); in internal_validity_check() 553 if (romp->name().length() > 127) in internal_validity_check() 555 …if (std::find_if_not(romp->name().begin(), romp->name().end(), valid_label_char) != romp->name().e… in internal_validity_check() 565 if (!ROMENTRY_ISREGIONEND(romp) && current_length > 0) in internal_validity_check() [all …]
|
H A D | romload.h | 439 …void handle_missing_file(const rom_entry *romp, const std::vector<std::string> &tried_file_names, … 448 int read_rom_data(emu_file *file, const rom_entry *parent_region, const rom_entry *romp); 449 void fill_rom_data(const rom_entry *romp); 450 void copy_rom_data(const rom_entry *romp); 452 …chd_error open_disk_diff(emu_options &options, const rom_entry *romp, chd_file &source, chd_file &… 482 const rom_entry *rom_first_region(const rom_entry *romp); 485 const rom_entry *rom_next_region(const rom_entry *romp); 488 const rom_entry *rom_first_file(const rom_entry *romp); 491 const rom_entry *rom_next_file(const rom_entry *romp); 494 u32 rom_file_size(const rom_entry *romp); [all …]
|
H A D | validity.cpp | 1581 for (tiny_rom_entry const *romp = device.rom_region(); romp && !ROMENTRY_ISEND(romp); ++romp) in validate_roms() local 1590 char const *const basetag = romp->name; in validate_roms() 1591 items_since_region = (ROMREGION_ISERASE(romp) || ROMREGION_ISDISKDATA(romp)) ? 1 : 0; in validate_roms() 1608 current_length = ROMREGION_GETLENGTH(romp); in validate_roms() 1614 int const bios_flags = ROM_GETBIOSFLAGS(romp); in validate_roms() 1615 char const *const biosname = romp->name; in validate_roms() 1642 defbios = romp->name; in validate_roms() 1647 last_name = romp->name; in validate_roms() 1665 if (!hashes.from_internal_string(romp->hashdata)) in validate_roms() 1670 if (!ROMENTRY_ISREGIONEND(romp) && current_length > 0) in validate_roms() [all …]
|
H A D | diimage.cpp | 891 for (const rom_entry *romp = region + 1; !ROMENTRY_ISREGIONEND(romp); romp++) in load_software() local 894 if (ROMENTRY_ISFILE(romp)) in load_software() 907 const bool has_crc = util::hash_collection(ROM_GETHASHDATA(romp)).crc(crc); in load_software() 925 filerr = m_mame_file->open(ROM_GETNAME(romp), crc); in load_software() 927 filerr = m_mame_file->open(ROM_GETNAME(romp)); in load_software() 931 …_and_hash(m_mame_file.get(), ROM_GETNAME(romp), ROM_GETLENGTH(romp), util::hash_collection(ROM_GET… in load_software()
|
/dports/emulators/mame/mame-mame0226/src/emu/ |
H A D | romload.cpp | 146 romp = rom_next_file(romp); in do_open_disk() 201 romp++; in rom_first_region() 202 return !ROMENTRY_ISEND(romp) ? romp : nullptr; in rom_first_region() 213 romp++; in rom_next_region() 218 return ROMENTRY_ISEND(romp) ? nullptr : romp; in rom_next_region() 229 romp++; in rom_first_file() 243 romp++; in rom_next_file() 258 while (romp && !ROMENTRY_ISEND(romp) && !ROMENTRY_ISPARAMETER(romp)) in rom_first_parameter() 260 return (romp != nullptr && !ROMENTRY_ISEND(romp)) ? romp : nullptr; in rom_first_parameter() 271 romp++; in rom_next_parameter() [all …]
|
H A D | softlist_dev.cpp | 523 for (rom_entry const *romp = &part.romdata().front(); romp && !ROMENTRY_ISEND(romp); ++romp) in internal_validity_check() local 532 items_since_region = (ROMREGION_ISERASE(romp) || ROMREGION_ISDISKDATA(romp)) ? 1 : 0; in internal_validity_check() 533 last_region_name = romp->name().c_str(); in internal_validity_check() 536 if (romp->name().size() < MIN_TAG_LENGTH) in internal_validity_check() 539 …if (std::find_if_not(romp->name().begin(), romp->name().end(), valid_tag_char) != romp->name().end… in internal_validity_check() 543 current_length = ROMREGION_GETLENGTH(romp); in internal_validity_check() 550 last_name = romp->name().c_str(); in internal_validity_check() 553 if (romp->name().length() > 127) in internal_validity_check() 555 …if (std::find_if_not(romp->name().begin(), romp->name().end(), valid_label_char) != romp->name().e… in internal_validity_check() 565 if (!ROMENTRY_ISREGIONEND(romp) && current_length > 0) in internal_validity_check() [all …]
|
H A D | romload.h | 439 …void handle_missing_file(const rom_entry *romp, const std::vector<std::string> &tried_file_names, … 448 int read_rom_data(emu_file *file, const rom_entry *parent_region, const rom_entry *romp); 449 void fill_rom_data(const rom_entry *romp); 450 void copy_rom_data(const rom_entry *romp); 452 …chd_error open_disk_diff(emu_options &options, const rom_entry *romp, chd_file &source, chd_file &… 482 const rom_entry *rom_first_region(const rom_entry *romp); 485 const rom_entry *rom_next_region(const rom_entry *romp); 488 const rom_entry *rom_first_file(const rom_entry *romp); 491 const rom_entry *rom_next_file(const rom_entry *romp); 494 u32 rom_file_size(const rom_entry *romp); [all …]
|
H A D | validity.cpp | 1581 for (tiny_rom_entry const *romp = device.rom_region(); romp && !ROMENTRY_ISEND(romp); ++romp) in validate_roms() local 1590 char const *const basetag = romp->name; in validate_roms() 1591 items_since_region = (ROMREGION_ISERASE(romp) || ROMREGION_ISDISKDATA(romp)) ? 1 : 0; in validate_roms() 1608 current_length = ROMREGION_GETLENGTH(romp); in validate_roms() 1614 int const bios_flags = ROM_GETBIOSFLAGS(romp); in validate_roms() 1615 char const *const biosname = romp->name; in validate_roms() 1642 defbios = romp->name; in validate_roms() 1647 last_name = romp->name; in validate_roms() 1665 if (!hashes.from_internal_string(romp->hashdata)) in validate_roms() 1670 if (!ROMENTRY_ISREGIONEND(romp) && current_length > 0) in validate_roms() [all …]
|
H A D | diimage.cpp | 891 for (const rom_entry *romp = region + 1; !ROMENTRY_ISREGIONEND(romp); romp++) in load_software() local 894 if (ROMENTRY_ISFILE(romp)) in load_software() 907 const bool has_crc = util::hash_collection(ROM_GETHASHDATA(romp)).crc(crc); in load_software() 925 filerr = m_mame_file->open(ROM_GETNAME(romp), crc); in load_software() 927 filerr = m_mame_file->open(ROM_GETNAME(romp)); in load_software() 931 …_and_hash(m_mame_file.get(), ROM_GETNAME(romp), ROM_GETLENGTH(romp), util::hash_collection(ROM_GET… in load_software()
|
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/ |
H A D | common.c | 1084 romp++; in rom_next_region() 1086 romp++; in rom_next_region() 1087 return ROMENTRY_ISEND(romp) ? NULL : romp; in rom_next_region() 1098 romp++; in rom_first_file() 1100 romp++; in rom_first_file() 1101 return ROMENTRY_ISREGIONEND(romp) ? NULL : romp; in rom_first_file() 1112 romp++; in rom_next_file() 1114 romp++; in rom_next_file() 1115 return ROMENTRY_ISREGIONEND(romp) ? NULL : romp; in rom_next_file() 1126 return (ROMENTRY_ISFILE(romp)) ? romp : NULL; in rom_first_chunk() [all …]
|
H A D | mame.c | 1537 const struct RomModule *romp; in validitychecks() local 1598 romp = drivers[i]->rom; in validitychecks() 1600 if (romp) in validitychecks() 1613 while (!ROMENTRY_ISEND(romp)) in validitychecks() 1617 if (ROMENTRY_ISREGION(romp)) in validitychecks() 1619 int type = ROMREGION_GETTYPE(romp); in validitychecks() 1631 if (ROMENTRY_ISFILE(romp)) in validitychecks() 1635 last_name = c = ROM_GETNAME(romp); in validitychecks() 1646 hash = ROM_GETHASHDATA(romp); in validitychecks() 1655 if (ROM_GETOFFSET(romp) + ROM_GETLENGTH(romp) > region_length[count]) in validitychecks() [all …]
|
H A D | common.h | 447 int rom_load(const struct RomModule *romp); 449 const struct RomModule *rom_next_region(const struct RomModule *romp); 450 const struct RomModule *rom_first_file(const struct RomModule *romp); 451 const struct RomModule *rom_next_file(const struct RomModule *romp); 452 const struct RomModule *rom_first_chunk(const struct RomModule *romp); 453 const struct RomModule *rom_next_chunk(const struct RomModule *romp); 455 void printromlist(const struct RomModule *romp,const char *name);
|
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/ |
H A D | common.c | 1084 romp++; in rom_next_region() 1086 romp++; in rom_next_region() 1087 return ROMENTRY_ISEND(romp) ? NULL : romp; in rom_next_region() 1098 romp++; in rom_first_file() 1100 romp++; in rom_first_file() 1101 return ROMENTRY_ISREGIONEND(romp) ? NULL : romp; in rom_first_file() 1112 romp++; in rom_next_file() 1114 romp++; in rom_next_file() 1115 return ROMENTRY_ISREGIONEND(romp) ? NULL : romp; in rom_next_file() 1126 return (ROMENTRY_ISFILE(romp)) ? romp : NULL; in rom_first_chunk() [all …]
|
H A D | mame.c | 1537 const struct RomModule *romp; in validitychecks() local 1598 romp = drivers[i]->rom; in validitychecks() 1600 if (romp) in validitychecks() 1613 while (!ROMENTRY_ISEND(romp)) in validitychecks() 1617 if (ROMENTRY_ISREGION(romp)) in validitychecks() 1619 int type = ROMREGION_GETTYPE(romp); in validitychecks() 1631 if (ROMENTRY_ISFILE(romp)) in validitychecks() 1635 last_name = c = ROM_GETNAME(romp); in validitychecks() 1646 hash = ROM_GETHASHDATA(romp); in validitychecks() 1655 if (ROM_GETOFFSET(romp) + ROM_GETLENGTH(romp) > region_length[count]) in validitychecks() [all …]
|
H A D | common.h | 446 int rom_load(const struct RomModule *romp); 448 const struct RomModule *rom_next_region(const struct RomModule *romp); 449 const struct RomModule *rom_first_file(const struct RomModule *romp); 450 const struct RomModule *rom_next_file(const struct RomModule *romp); 451 const struct RomModule *rom_first_chunk(const struct RomModule *romp); 452 const struct RomModule *rom_next_chunk(const struct RomModule *romp); 454 void printromlist(const struct RomModule *romp,const char *name);
|
/dports/misc/rump/buildrump.sh-b914579/src/sys/dev/tc/ |
H A D | tc.c | 210 tc_check_romp(const struct tc_rommap *romp) in tc_check_romp() argument 212 if (romp->tcr_stride.v != 4) in tc_check_romp() 216 if (romp->tcr_test[j + 0 * romp->tcr_stride.v] != 0x55 || in tc_check_romp() 217 romp->tcr_test[j + 1 * romp->tcr_stride.v] != 0x00 || in tc_check_romp() 218 romp->tcr_test[j + 2 * romp->tcr_stride.v] != 0xaa || in tc_check_romp() 219 romp->tcr_test[j + 3 * romp->tcr_stride.v] != 0xff) in tc_check_romp() 228 struct tc_rommap *romp; in tc_checkslot() local 232 romp = (struct tc_rommap *) in tc_checkslot() 235 switch (romp->tcr_width.v) { in tc_checkslot() 245 if (!tc_check_romp(romp)) in tc_checkslot() [all …]
|
/dports/irc/epic5/epic5-2.1.6/script/ |
H A D | snip | 27 alias _snippy (stomp, chomp dwords 1, romp) { 29 while (@romp >= @chomp) { 30 if ((stomp == [r]) && (right($@chomp $romp) == chomp)) { 31 @ romp = chop($@chomp $romp); 32 } else if ((stomp == [l]) && (left($@chomp $romp) == chomp)) { 33 @ romp = rest($@chomp $romp); 38 return $romp;
|
/dports/science/code_saturne/code_saturne-7.1.0/src/lagr/ |
H A D | cs_lagr_deposition_model.c | 119 cs_real_t romp, 257 cs_real_t romp, in _dep_sweep() argument 319 romp, in _dep_sweep() 420 cs_real_t romp, in _dep_diffusion_phases() argument 599 romp, in _dep_diffusion_phases() 686 cs_real_t romp, in _dep_inner_zone_diffusion() argument 910 romp, in _dep_inner_zone_diffusion() 1062 cs_real_t romp, in cs_lagr_deposition() argument 1185 romp, in cs_lagr_deposition() 1214 romp, in cs_lagr_deposition() [all …]
|
/dports/textproc/c2man/c2man-2.0.42/tests/ |
H A D | j.c | 88 #ifdef romp 93 #endif romp
|
H A D | m.c | 88 #ifdef romp 93 #endif romp
|
/dports/net/gopher/gopher/ |
H A D | config.guess | 157 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id 200 ibmrt:4.4BSD:*|romp-ibm:BSD:*) 201 echo romp-ibm-bsd4.4 203 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC NetBSD and 204 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
|
/dports/editors/vigor/vigor-0.016/build/ |
H A D | config.guess | 157 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id 200 ibmrt:4.4BSD:*|romp-ibm:BSD:*) 201 echo romp-ibm-bsd4.4 203 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC NetBSD and 204 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
|