OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:get_seg
(Results
1 - 2
of
2
) sorted by null
/external/qemu/target-i386/
hax-all.c
678
static void
get_seg
(SegmentCache *lhs, const struct segment_desc_t *rhs)
function
725
get_seg
(&env->segs[R_CS], &sregs->_cs);
726
get_seg
(&env->segs[R_DS], &sregs->_ds);
727
get_seg
(&env->segs[R_ES], &sregs->_es);
728
get_seg
(&env->segs[R_FS], &sregs->_fs);
729
get_seg
(&env->segs[R_GS], &sregs->_gs);
730
get_seg
(&env->segs[R_SS], &sregs->_ss);
732
get_seg
(&env->tr, &sregs->_tr);
733
get_seg
(&env->ldt, &sregs->_ldt);
kvm.c
306
static void
get_seg
(SegmentCache *lhs, const struct kvm_segment *rhs)
function
510
get_seg
(&env->segs[R_CS], &sregs.cs);
511
get_seg
(&env->segs[R_DS], &sregs.ds);
512
get_seg
(&env->segs[R_ES], &sregs.es);
513
get_seg
(&env->segs[R_FS], &sregs.fs);
514
get_seg
(&env->segs[R_GS], &sregs.gs);
515
get_seg
(&env->segs[R_SS], &sregs.ss);
517
get_seg
(&env->tr, &sregs.tr);
518
get_seg
(&env->ldt, &sregs.ldt);
Completed in 776 milliseconds