Home | History | Annotate | Download | only in amd64

Lines Matching refs:flags

8 void do_lzcnt64 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, ULong arg )
21 *flags = block[2] & 0x8d5;
25 void do_lzcnt32 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, ULong arg )
38 *flags = block[2] & 0x8d5;
42 void do_lzcnt16 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, ULong arg )
55 *flags = block[2] & 0x8d5;
65 UInt flags;
66 do_lzcnt64(&flags, &res, w);
67 printf("lzcntq %016llx -> %016llx %04x\n", w, res, flags);
75 UInt flags;
76 do_lzcnt32(&flags, &res, w);
77 printf("lzcntl %016llx -> %016llx %04x\n", w, res, flags);
85 UInt flags;
86 do_lzcnt16(&flags, &res, w);
87 printf("lzcntw %016llx -> %016llx %04x\n", w, res, flags);