search for: prefix_

Displaying 6 results from an estimated 6 matches for "prefix_".

Did you mean: prefix
2009 Jan 02
2
Deprecated Realtime application, what's to be gained ???
...pdate() have been deprecated in favor of the REALTIME() function. While it's not a big deal for the write part since it's only a matter a shifting a ')' and adding a '=', the read part is quite harder to use. while you could simply write RealTime(family|col1|val1|prefix_); NoOp(${prefix_col2}); NoOp(${prefix_col3}); No you have to Set(row="${REALTIME(family,col1,val1)}"); Set(col2_name_pair=${CUT(row,"|",2)}); Set(col2_value=${CUT(col2_name_pair,"=",2)}); NoOp(${col2_value}); Set(col3_name_pair=${CU...
2012 Aug 23
0
[LLVMdev] % in tablegen
Hi, I am facing an issue with tablegen. tablegen complains about not finding a register when % is used in the instruction string. error: unable to find register for '' (which matches register prefix) I have copied an example (not the original). Note that i added %prefix_ before $sp register. Tablegen seems to interpret % as placeholder for inserting register. Is there any way to make tablgen ignore the %? I have tried '\' character, and two "%%". None worked. // ADD <Rd>, sp, #<imm8> // This is rematerializable, which is particularly...
2008 Jan 21
2
NumberValueRangeProcessor documentation
...ion (a) make sense, and (b) accurate: ---------------------------------------------------------------------- --- include/xapian/queryparser.h (revision 9993) +++ include/xapian/queryparser.h (working copy) @@ -213,7 +213,7 @@ * * For example, if str_ is "$" and prefix_ is true, and the range * processor has been added to the queryparser, the queryparser will - * accept "$10..50" or "$10..50", but not "10..50" or "10..$50" as valid + * accept "$10..50" or "$10..$50", but not "10..50&...
2016 Apr 05
3
[PATCH v2 FOR DISCUSSION ONLY 1/2] scripts: Add a script for formatting all C code in the project.
See previous version: https://www.redhat.com/archives/libguestfs/2016-April/msg00021.html The formatting in this second version isn't too bad. Still a few corner cases to sort out. Rich.
2017 Aug 21
2
Extending TableGen's 'foreach' to work with 'multiclass' and 'defm'
...2 : ... // Describe the meta-classes for the LDE group class T_LDE_Type1 : ... class T_LDE_Type2 : ... // Share a single set of definitions, but parameterised by meta-class foreach loadOp = ["LDA", "LDB", "LDC", "LDD", "LDE" ] in { def Prefix_#loadOp#_suffix1 : T_#loadOp#_Type1<...>; def Prefix_#loadOp#_suffix2 : T_#loadOp#_Type2<...>; } All of the ‘def’s pass the same values to the ‘class’s, though the ‘class’s may ignore some as appropriate. For example, I pass the auto-increment size to each, though only the auto-...
2023 Mar 19
3
[libnbd PATCH v4 0/2] lib/utils: introduce async-signal-safe execvpe()
This is version 4 of the following sub-series: [libnbd PATCH v3 09/29] lib/utils: introduce async-signal-safe execvpe() [libnbd PATCH v3 10/29] lib/utils: add unit tests for async-signal-safe execvpe() http://mid.mail-archive.com/20230215141158.2426855-10-lersek at redhat.com http://mid.mail-archive.com/20230215141158.2426855-11-lersek at redhat.com The Notes section on each patch records the