Home
last modified time | relevance | path

Searched refs:memloc (Results 1 – 25 of 63) sorted by relevance

123

/dports/cad/scotch/scotch-6.0.4/src/libscotch/
H A Dcommon_memory.c487 memloc = (byte **) memptr; /* Point to first memory argument */ in memAllocGroup()
489 while (memloc != NULL) { /* As long as not NULL pointer */ in memAllocGroup()
492 memloc = va_arg (memlist, byte **); in memAllocGroup()
501 memloc = (byte **) memptr; /* Point to first memory argument */ in memAllocGroup()
503 while (memloc != NULL) { /* As long as not NULL pointer */ in memAllocGroup()
505 *memloc = blkptr + memoff; /* Set argument address */ in memAllocGroup()
507 memloc = va_arg (memlist, void *); /* Get next argument pointer */ in memAllocGroup()
538 while ((memloc = va_arg (memlist, byte **)) != NULL) { /* As long as not NULL pointer */ in memReallocGroup()
548 while ((memloc = va_arg (memlist, byte **)) != NULL) { /* As long as not NULL pointer */ in memReallocGroup()
550 *memloc = blkptr + memoff; /* Set argument address */ in memReallocGroup()
[all …]
/dports/graphics/xfractint/xfractint-20.04p16/headers/
H A Dtarga.h64 #define MEMSEG targa.memloc /* use the variable so we can use */
65 #define SCNSEG targa.memloc /* the one defined in TARGA */
66 #define SRCBANK (targa.memloc+0x0800) /* use high-bank as source bank */
67 #define DESTBANK targa.memloc /* use lo-bank as destination bank */
251 int memloc; /* memory segment */ member
/dports/devel/redasm/REDasm-2.1.1/LibREDasm/redasm/assemblers/mips/
H A Dmips_emulator.cpp121 u32 regvalue = 0, memloc = 0, memvalue = 0; in emulateSxx() local
124 if(!this->readOp(op1, &regvalue) || !this->readOp(op2, &memloc)) in emulateSxx()
127 this->readMem(static_cast<u32>(memloc), &memvalue, static_cast<u32>(size)); in emulateSxx()
134 this->writeMem(memloc, regvalue); in emulateSxx()
/dports/comms/gnokii/gnokii-0.6.31/common/
H A Dvcard.c387 char memloc[10]; in gn_vcardstr2phonebook() local
395 memset(memloc, 0, sizeof(memloc)); in gn_vcardstr2phonebook()
495 STORE3("X_GSM_STORE_AT:", memloc); in gn_vcardstr2phonebook()
497 if (strlen(memloc) > 2) { in gn_vcardstr2phonebook()
498 entry->location = atoi(memloc + 2); in gn_vcardstr2phonebook()
499 memloc[2] = 0; in gn_vcardstr2phonebook()
500 entry->memory_type = gn_str2memory_type(memloc); in gn_vcardstr2phonebook()
/dports/math/py-numpy/numpy-1.20.3/numpy/core/src/multiarray/
H A Dscalarapi.c38 uintptr_t memloc; in scalar_value() local
171 memloc = (uintptr_t)scalar; in scalar_value()
172 memloc += sizeof(PyObject); in scalar_value()
176 memloc = ((memloc + align - 1)/align)*align; in scalar_value()
178 return (void *)memloc; in scalar_value()
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/vidhrdw/
H A Dastrocde.c697 int memloc; in wow_update_line() local
707 memloc = line * 80; in wow_update_line()
709 for (i = 0; i < 80; i++, memloc++) in wow_update_line()
712 data = wow_videoram[memloc]; in wow_update_line()
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/vidhrdw/
H A Dastrocde_vidhrdw.c727 int memloc; in wow_update_line() local
738 memloc = line * 80; in wow_update_line()
740 for (i = 0; i < 80; i++, memloc++) in wow_update_line()
743 data = wow_videoram[memloc]; in wow_update_line()
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/vidhrdw/
H A Dastrocde_vidhrdw.c727 int memloc; in wow_update_line() local
738 memloc = line * 80; in wow_update_line()
740 for (i = 0; i < 80; i++, memloc++) in wow_update_line()
743 data = wow_videoram[memloc]; in wow_update_line()
/dports/emulators/mednafen/mednafen/src/mthreading/
H A DMThreading_Win32.cpp115 unsigned volatile memloc = ((unsigned long long)&test_array[0]); in TestStackAlign() local
116 assert((memloc & 0xF) == 0); in TestStackAlign()
/dports/lang/intercal/intercal-0.31/src/
H A Dick.h102 int memloc; /* AIS: Where does a PIC store this in memory? */ member
/dports/graphics/xfractint/xfractint-20.04p16/common/
H A Dtarga.c170 erasesegment(targa.memloc,0); /** general.asm **/ in DoFirstPixel()
636 targa.memloc = (signed int)0xA000; in GraphInit()
640 targa.memloc = 0x8000 + ((switches & 0x70) << 8); in GraphInit()
/dports/emulators/darcnes/darcnes/
H A Dtest_6502.c41 struct memloc { struct
46 struct memloc memlocs[MAX_MEMLOCS]; argument
H A Dtest_6280.c40 struct memloc { struct
45 struct memloc memlocs[MAX_MEMLOCS]; argument
H A Dtest_68k.c38 struct memloc { struct
43 struct memloc memlocs[MAX_MEMLOCS]; argument
/dports/cad/xcircuit/xcircuit-3.10.30/asg/
H A Dutility.c57 void *memloc; in my_calloc() local
60 memloc = (void *)Tcl_Alloc(memsiz); in my_calloc()
61 if (memloc) bzero(memloc, memsiz); in my_calloc()
62 return memloc; in my_calloc()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/monitor/
H A Dmon_parse.y185 %type<i> memspace memloc memaddr checkpt_num mem_op opt_mem_op
655 address: memloc
660 | memspace opt_sep memloc
686 memloc: memaddr { $$ = $1; if (!CHECK_ADDR($1)) return ERR_ADDR_TOO_BIG; };
/dports/emulators/vice/vice-3.5/src/monitor/
H A Dmon_parse.y185 %type<i> memspace memloc memaddr checkpt_num mem_op opt_mem_op
706 address: memloc
711 | memspace opt_sep memloc
737 memloc: memaddr { $$ = $1; if (!CHECK_ADDR($1)) return ERR_ADDR_TOO_BIG; };
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/gcc-4.1-20060728/gcc/
H A Dstmt.c932 rtx memloc = assign_temp (qual_type, 1, 1, 1); in expand_asm_operands() local
933 memloc = validize_mem (memloc); in expand_asm_operands()
934 emit_move_insn (memloc, op); in expand_asm_operands()
935 op = memloc; in expand_asm_operands()
/dports/misc/heyu2/heyu-2.10/
H A Dprocess.h1491 int memloc; /* Offset of timer in Cm11a memory image */ member
1502 int memloc; /* Offset of trigger in Cm11a memory image */ member
/dports/security/py-angr/angr-9.0.5405/angr/analyses/reaching_definitions/
H A Dengine_vex.py193 memloc = MemoryLocation(a, size)
196 self.state.kill_and_add_definition(memloc, self._codeloc(), data, tags=tags)
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/JEGA/eddy/utilities/include/inline/
H A Dbit_mask.hpp.inl504 bit_index memloc argument
508 EDDY_ASSERT(memloc < MEMBER_BIT_COUNT);
509 return static_cast<bit_store_type>(1 << memloc);
/dports/editors/fpc-ide/fpc-3.2.2/compiler/llvm/
H A Dhlcgllvm.pas1626 memloc: tlocation;
1630 memloc:=l;
1631 location_force_mem(list,memloc,vardef);
1632 a_loadaddr_ref_cgpara(list,vardef,memloc.reference,cgpara);
/dports/lang/fpc/fpc-3.2.2/compiler/llvm/
H A Dhlcgllvm.pas1626 memloc: tlocation;
1630 memloc:=l;
1631 location_force_mem(list,memloc,vardef);
1632 a_loadaddr_ref_cgpara(list,vardef,memloc.reference,cgpara);
/dports/lang/fpc-source/fpc-3.2.2/compiler/llvm/
H A Dhlcgllvm.pas1626 memloc: tlocation;
1630 memloc:=l;
1631 location_force_mem(list,memloc,vardef);
1632 a_loadaddr_ref_cgpara(list,vardef,memloc.reference,cgpara);
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Common/
H A Dx64Emitter.cpp1509 void XEmitter::STMXCSR(OpArg memloc) {WriteMXCSR(memloc, 3);} in STMXCSR() argument
1510 void XEmitter::LDMXCSR(OpArg memloc) {WriteMXCSR(memloc, 2);} in LDMXCSR() argument

123