Lines Matching refs:otherArray
174 //% GPB##NAME##Array *otherArray = other;
175 //% return (_count == otherArray->_count
176 //% && memcmp(_values, otherArray->_values, (_count * sizeof(TYPE))) == 0);
385 GPBInt32Array *otherArray = other;
386 return (_count == otherArray->_count
387 && memcmp(_values, otherArray->_values, (_count * sizeof(int32_t))) == 0);
633 GPBUInt32Array *otherArray = other;
634 return (_count == otherArray->_count
635 && memcmp(_values, otherArray->_values, (_count * sizeof(uint32_t))) == 0);
881 GPBInt64Array *otherArray = other;
882 return (_count == otherArray->_count
883 && memcmp(_values, otherArray->_values, (_count * sizeof(int64_t))) == 0);
1129 GPBUInt64Array *otherArray = other;
1130 return (_count == otherArray->_count
1131 && memcmp(_values, otherArray->_values, (_count * sizeof(uint64_t))) == 0);
1377 GPBFloatArray *otherArray = other;
1378 return (_count == otherArray->_count
1379 && memcmp(_values, otherArray->_values, (_count * sizeof(float))) == 0);
1625 GPBDoubleArray *otherArray = other;
1626 return (_count == otherArray->_count
1627 && memcmp(_values, otherArray->_values, (_count * sizeof(double))) == 0);
1873 GPBBoolArray *otherArray = other;
1874 return (_count == otherArray->_count
1875 && memcmp(_values, otherArray->_values, (_count * sizeof(BOOL))) == 0);
2145 GPBEnumArray *otherArray = other;
2146 return (_count == otherArray->_count
2147 && memcmp(_values, otherArray->_values, (_count * sizeof(int32_t))) == 0);