search for: _begin

Displaying 4 results from an estimated 4 matches for "_begin".

Did you mean: begin
2013 Aug 02
5
[LLVMdev] Coding Standards: Iterator begin and end functions.
...es that look like STL ones should use similar names for the methods (begin(), push_back(), etc...). But different parts of llvm have different opinions on how to handle the related case of classes that are not STL like, but have multiple collections that can be iterated over. * llvm/IR uses global_begin, alias_begin, etc. I.E., singular name + _begin(). * llvm/Object uses begin_symbols, begin_sections, etc. I.E, begin_ + plural name. * others (YAML, LoopIterator) use beginSequence, beginFlowSequence, etc. I would like to propose adding the the format used by llvm/IR to the coding standard since i...
2015 Mar 28
1
Building a new decoder - some questions on the spec (residue decode)
Hi I am trying to build a new decoder in Java, I know there are a couple of java decoders already but they don't implement the bit of the spec I am having questions on Question 1) In section 8.6.2 it mentions "However, it is also possible to set [residue_begin] and [residue_end] to specify a range partially or wholly beyond the maximum vector size. Before beginning residue decode, limit [residue_begin] and [residue_end] to the maximum possible vector size as follows." The code segment then has 1) [actual\_size] = current blocksize/2; 2) if residue...
2013 Aug 02
0
[LLVMdev] Coding Standards: Iterator begin and end functions.
...use similar names for the methods (begin(), > push_back(), etc...). > > But different parts of llvm have different opinions on how to handle > the related case of classes that are not STL like, but have multiple > collections that can be iterated over. > > * llvm/IR uses global_begin, alias_begin, etc. I.E., singular name + > _begin(). > * llvm/Object uses begin_symbols, begin_sections, etc. I.E, begin_ + > plural name. > * others (YAML, LoopIterator) use beginSequence, beginFlowSequence, etc. > > I would like to propose adding the the format used by llvm/IR t...
2013 Aug 02
0
[LLVMdev] Coding Standards: Iterator begin and end functions.
...se similar names for the methods (begin(), > push_back(), etc...). > > But different parts of llvm have different opinions on how to handle > the related case of classes that are not STL like, but have multiple > collections that can be iterated over. > > * llvm/IR uses global_begin, alias_begin, etc. I.E., singular name + _begin(). > * llvm/Object uses begin_symbols, begin_sections, etc. I.E, begin_ + > plural name. > * others (YAML, LoopIterator) use beginSequence, beginFlowSequence, etc. > > I would like to propose adding the the format used by llvm/IR to th...