HomeSort by relevance Sort by last modified time
    Searched refs:elt1 (Results 1 - 9 of 9) sorted by null

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
bitmap.h 205 bitmap_element *elt1; member in struct:__anon19102
226 bi->elt1 = map->first;
229 /* Advance elt1 until it is not before the block containing start_bit. */
232 if (!bi->elt1)
234 bi->elt1 = &bitmap_zero_bits;
238 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
240 bi->elt1 = bi->elt1->next;
244 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
245 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
bitmap.h 205 bitmap_element *elt1; member in struct:__anon19464
226 bi->elt1 = map->first;
229 /* Advance elt1 until it is not before the block containing start_bit. */
232 if (!bi->elt1)
234 bi->elt1 = &bitmap_zero_bits;
238 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
240 bi->elt1 = bi->elt1->next;
244 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
245 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
bitmap.h 205 bitmap_element *elt1; member in struct:__anon19837
226 bi->elt1 = map->first;
229 /* Advance elt1 until it is not before the block containing start_bit. */
232 if (!bi->elt1)
234 bi->elt1 = &bitmap_zero_bits;
238 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
240 bi->elt1 = bi->elt1->next;
244 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
245 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS
    [all...]
  /external/collada/src/dae/
daeElement.cpp 481 elt1(NULL),
490 if (!elt1 || !elt2)
494 string name1 = formatToken(elt1->getElementName()),
496 type1 = formatToken(elt1->getTypeName()),
498 id1 = formatToken(elt1->getAttribute("id")),
502 attrValue1 = formatToken(elt1->getAttribute(attrMismatch.c_str())),
504 charData1 = formatToken(elt1->getCharData()),
506 childCount1 = formatToken(cdom::toString(elt1->getChildren().getCount())),
539 daeElement::compareResult nameMismatch(daeElement& elt1, daeElement& elt2) {
541 result.elt1 = &elt1
    [all...]
daeMetaAttribute.cpp 39 daeInt daeMetaAttribute::compare(daeElement* elt1, daeElement* elt2) {
40 return _type->compare(get(elt1), get(elt2));
43 daeInt daeMetaArrayAttribute::compare(daeElement* elt1, daeElement* elt2) {
44 daeArray& value1 = (daeArray&)*get(elt1);
  /external/collada/include/dae/
daeMetaAttribute.h 208 * @param elt1 The first element whose attribute value should be compared.
213 virtual daeInt compare(daeElement* elt1, daeElement* elt2);
258 * @param elt1 The first element whose attribute value should be compared.
263 virtual daeInt compare(daeElement* elt1, daeElement* elt2);
daeElement.h 505 int compareValue; // > 0 if elt1 > elt2,
506 // < 0 if elt1 < elt2,
507 // = 0 if elt1 = elt2
508 daeElement* elt1; member in struct:daeElement::compareResult
521 // a map or a set. Return val is > 0 if elt1 > elt2, < 0 if elt1 < elt2, and 0
522 // if elt1 == elt2.
523 static int compare(daeElement& elt1, daeElement& elt2);
526 static compareResult compareWithFullResult(daeElement& elt1, daeElement& elt2);
  /external/llvm/include/llvm/
DerivedTypes.h 225 static StructType *create(StringRef Name, Type *elt1, ...) END_WITH_NULL;
240 static StructType *get(Type *elt1, ...) END_WITH_NULL;
267 void setBody(Type *elt1, ...) END_WITH_NULL;
  /external/v8/test/mjsunit/
array-functions-prototype-misc.js 82 unshift_function_2 = function(array, elt1, elt2) {
83 return array.unshift(elt1, elt2);
116 unshift_function_2 = function(array, elt1, elt2) {
117 return Array.prototype.unshift.call(array, elt1, elt2);

Completed in 1769 milliseconds