Searched refs:hptr (Results 1 – 2 of 2) sorted by relevance
16 static void srl128(u64 *hptr, u64 *lptr, int count) in srl128() argument21 *lptr = *hptr != 0 || *lptr != 0; in srl128()22 *hptr = 0; in srl128()25 *lptr = *hptr | (*lptr != 0); in srl128()28 *lptr = *hptr >> (count - 64); in srl128()29 *lptr |= (*hptr << (128 - count)) != 0 || low != 0; in srl128()31 *hptr = 0; in srl128()34 *lptr = low >> count | *hptr << (64 - count); in srl128()36 *hptr = *hptr >> count; in srl128()
1706 struct kvm_get_htab_header __user *hptr; in kvm_htab_read() local1727 hptr = (struct kvm_get_htab_header __user *)buf; in kvm_htab_read()1774 if (__copy_to_user(hptr, &hdr, sizeof(hdr))) in kvm_htab_read()
Completed in 94 milliseconds