Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 42) sorted by relevance

12

/xen-4.10.0-shim-comet/xen/common/
A Dsymbols.c110 unsigned long i, low, high, mid; in symbols_lookup() local
126 high = symbols_num_syms; in symbols_lookup()
128 while (high-low > 1) { in symbols_lookup()
129 mid = (low + high) / 2; in symbols_lookup()
131 else high = mid; in symbols_lookup()
216 unsigned long low, high; in symbols_lookup_by_name() local
229 high = symbols_num_syms; in symbols_lookup_by_name()
230 while ( low < high ) in symbols_lookup_by_name()
232 unsigned long mid = low + ((high - low) / 2); in symbols_lookup_by_name()
241 high = mid; in symbols_lookup_by_name()
A Dlib.c437 uint32_t high, low; in muldiv64()
439 uint32_t low, high; in muldiv64()
447 rh = (uint64_t)u.l.high * (uint64_t)b; in muldiv64()
449 res.l.high = rh / c; in muldiv64()
/xen-4.10.0-shim-comet/tools/libxc/
A Dxc_flask.c258 op.u.ocontext.high = high; in xc_flask_add()
268 int xc_flask_add_ioport(xc_interface *xch, unsigned long low, unsigned long high, in xc_flask_add_ioport() argument
271 return xc_flask_add(xch, OCON_IOPORT, low, high, scontext); in xc_flask_add_ioport()
274 int xc_flask_add_iomem(xc_interface *xch, unsigned long low, unsigned long high, in xc_flask_add_iomem() argument
277 return xc_flask_add(xch, OCON_IOMEM, low, high, scontext); in xc_flask_add_iomem()
285 static int xc_flask_del(xc_interface *xch, uint32_t ocon, uint64_t low, uint64_t high) in xc_flask_del() argument
292 op.u.ocontext.high = high; in xc_flask_del()
302 int xc_flask_del_ioport(xc_interface *xch, unsigned long low, unsigned long high) in xc_flask_del_ioport() argument
304 return xc_flask_del(xch, OCON_IOPORT, low, high); in xc_flask_del_ioport()
307 int xc_flask_del_iomem(xc_interface *xch, unsigned long low, unsigned long high) in xc_flask_del_iomem() argument
[all …]
/xen-4.10.0-shim-comet/xen/include/asm-x86/
A Dmsr.h87 uint32_t low, high; in rdtsc() local
89 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)); in rdtsc()
91 return ((uint64_t)high << 32) | low; in rdtsc()
120 #define rdpmc(counter,low,high) \ argument
122 : "=a" (low), "=d" (high) \
A Dmonitor.h32 DECLARE_BITMAP(high, 8192);
/xen-4.10.0-shim-comet/xen/drivers/passthrough/amd/
A Diommu_detect.c63 u32 low, high; in get_iommu_features() local
88 high = readl(iommu->mmio_base + IOMMU_EXT_FEATURE_MMIO_OFFSET + 4); in get_iommu_features()
90 iommu->features = ((u64)high << 32) | low; in get_iommu_features()
/xen-4.10.0-shim-comet/xen/xsm/flask/include/
A Dsecurity.h105 unsigned long high, u32 sid);
107 int security_ocontext_del(u32 ocontext, unsigned long low, unsigned long high);
/xen-4.10.0-shim-comet/xen/xsm/flask/ss/
A Dservices.c1968 int security_ocontext_add( u32 ocon, unsigned long low, unsigned long high in security_ocontext_add() argument
1985 if ( high != low ) in security_ocontext_add()
2014 add->u.ioport.high_ioport = high; in security_ocontext_add()
2024 if (c && c->u.ioport.low_ioport <= high) in security_ocontext_add()
2027 c->u.ioport.high_ioport == high && c->sid == sid) in security_ocontext_add()
2047 add->u.iomem.high_iomem = high; in security_ocontext_add()
2057 if (c && c->u.iomem.low_iomem <= high) in security_ocontext_add()
2060 c->u.iomem.high_iomem == high && c->sid == sid) in security_ocontext_add()
2080 if ( high != low ) in security_ocontext_add()
2156 c->u.ioport.high_ioport == high ) in security_ocontext_del()
[all …]
/xen-4.10.0-shim-comet/docs/
A DREADME.colo2 project is a high availability solution. Both primary VM (PVM) and secondary VM
/xen-4.10.0-shim-comet/xen/common/libelf/
A Dlibelf-loader.c470 uint64_t low = -1, high = 0, paddr, memsz; in elf_parse_binary() local
488 if ( high < paddr + memsz ) in elf_parse_binary()
489 high = paddr + memsz; in elf_parse_binary()
492 elf->pend = high; in elf_parse_binary()
/xen-4.10.0-shim-comet/xen/arch/x86/
A Dmonitor.c61 BUILD_BUG_ON(sizeof(d->arch.monitor.msr_bitmap->high) * 8 <= 0x1fff); in monitor_bitmap_for_msr()
63 return d->arch.monitor.msr_bitmap->high; in monitor_bitmap_for_msr()
/xen-4.10.0-shim-comet/tools/flask/policy/policy/support/
A Dmls_macros.spt51 # Basic level names for system low and high
/xen-4.10.0-shim-comet/docs/misc/
A Dcrashdb.txt12 you can use gdb=com1H. CDB will then set the high bit on every byte
13 it sends, and only respond to bytes with the high bit set. Similarly
A Dpv-drivers-lifecycle.markdown23 After the high level design of the protocol has been discussed and
A Dcoverage.markdown40 * It is simpler to maintain a high level script than a C program;
/xen-4.10.0-shim-comet/xen/xsm/flask/
A Dflask_op.c525 if ( arg->low > arg->high ) in flask_ocontext_del()
532 return security_ocontext_del(arg->ocon, arg->low, arg->high); in flask_ocontext_del()
539 if ( arg->low > arg->high ) in flask_ocontext_add()
546 return security_ocontext_add(arg->ocon, arg->low, arg->high, arg->sid); in flask_ocontext_add()
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/
A Devent.ml17 (**************** high level binding ****************)
/xen-4.10.0-shim-comet/xen/include/public/xsm/
A Dflask_op.h139 uint64_t low, high; member
/xen-4.10.0-shim-comet/docs/man/
A Dxen-tscmode.pod.728 per second per processor, we call this a "high-TSC-frequency"
30 and apps that are high-TSC-frequency are usually aware of it.)
160 enterprise applications which require high-frequency high-precision
195 the rdtsc instruction at a high frequency (e.g. more than about 10,000 times
318 has changed, which should be very rare relative to a high
334 TSC-sensitive high-TSC-frequency apps may find it useful to
A Dxen-pv-channel.pod.733 Note: if an application requires a high-bandwidth link then it should use
/xen-4.10.0-shim-comet/xen/common/xz/
A Ddec_lzma2.c129 uint16_t high[LEN_HIGH_SYMBOLS]; member
576 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; in lzma_literal_probs() local
577 return s->lzma.literal[low + high]; in lzma_literal_probs()
635 probs = l->high; in lzma_len()
/xen-4.10.0-shim-comet/stubdom/grub.patches/
A D60ext4.diff150 + __u32 i_version_hi; /* high 32 bits for 64-bit version */
181 + __u16 ee_start_hi; /* high 16 bits of physical block */
194 + __u16 ei_leaf_hi; /* high 16 bits of physical block */
/xen-4.10.0-shim-comet/tools/libxc/include/
A Dxenctrl.h2316 int xc_flask_add_ioport(xc_interface *xc_handle, unsigned long low, unsigned long high,
2318 int xc_flask_add_iomem(xc_interface *xc_handle, unsigned long low, unsigned long high,
2322 int xc_flask_del_ioport(xc_interface *xc_handle, unsigned long low, unsigned long high);
2323 int xc_flask_del_iomem(xc_interface *xc_handle, unsigned long low, unsigned long high);
/xen-4.10.0-shim-comet/tools/tests/vhpet/
A Dmain.c354 static void hpet_reset_counter(unsigned long low, unsigned long high) in hpet_reset_counter() argument
357 hpet_writel(high, HPET_COUNTER + 4); in hpet_reset_counter()
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/
A Dvlapic.c657 uint32_t high = 0, reg = msr - MSR_IA32_APICBASE_MSR, offset = reg << 4; in hvm_x2apic_msr_read() local
664 high = vlapic_read_aligned(vlapic, APIC_ICR2); in hvm_x2apic_msr_read()
666 *msr_content = ((uint64_t)high << 32) | in hvm_x2apic_msr_read()

Completed in 33 milliseconds

12