Displaying 4 results from an estimated 4 matches for "def_used".
2007 Oct 22
1
Help! bad cyrillic font rendering
...? --------------------
? ? InternalLeading = 0
? ? Ascent = 11
? ? Descent = 2
? ? Height = 13
trace:font:WineEngGetTextExtentExPoint 0x1ee2f18, L"\0421\043b\0443\0436\0435\0431\043d\043e\0435 \043f\043e\043b\0435 ", 15, 0, 0x33f9a4
trace:font:get_glyph_index 0421 (ffffffd1) -> ret 178 def_used 0
trace:font:WineEngGetGlyphOutline 0x1ee2f18, 00b2, 00000080, 0x33ef8c, 00000000, (nil), (nil)
trace:font:get_glyph_index 043b (ffffffeb) -> ret 204 def_used 0
trace:font:WineEngGetGlyphOutline 0x1ee2f18, 00cc, 00000080, 0x33ef8c, 00000000, (nil), (nil)
trace:font:get_glyph_index 0443 (fffffff3...
2011 Jul 24
1
[LLVMdev] Def_Use chain
Hi All
I extract Def_Use chain by following code:
for (Value::use_iterator i = F->use_begin(), e = F->use_end(); i != e; ++i)
if (Instruction *Inst = dyn_cast<Instruction>(*i)) {
errs() << "F is used in instruction:\n";
errs() << *Inst << "\n";
}
Now, I want to distinguish the register name or memory variable that lead to
2019 Nov 16
2
Sieve and recipient_delimiter
I use recipient_delimiter addresseses quiet a bit, and I want to put several of them into a mailbox
if anyof (header :contains ["to"] [ ?FOO", ?foo", ?bar", ?florin"]) {
fileinto :create ?later";
stop;
}
When I get an email addressed to me+FOO at example.com or me_florin at example.com, the messages end up in my inbox (Yes, I have both + and _
2019 Nov 17
0
Sieve and recipient_delimiter
From the Notes section of my sieve file, because I always forget this
# MORE NOTES:
# Using :localpart takes just the local part of an address
# header selects a header, address selects an address
# Looks like this is the spec:
# :localpart = :user+:detail
# address are :localpart @ :domain, or :user + :detail @ :domain
# See RFC5233
I use this bit for figuring out what :detail something (might)