Searched refs:_Count (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTString.cpp | 41 CPVRTString::CPVRTString(const char* _Ptr, size_t _Count) : in CPVRTString() argument 44 if (_Count == npos) in CPVRTString() 56 assign(_Ptr, _Count); in CPVRTString() 66 CPVRTString::CPVRTString(const CPVRTString& _Right, size_t _Roff, size_t _Count) : in CPVRTString() argument 69 assign(_Right, _Roff, _Count); in CPVRTString() 78 CPVRTString::CPVRTString(size_t _Count, char _Ch) : in CPVRTString() argument 81 assign(_Count,_Ch); in CPVRTString() 140 CPVRTString& CPVRTString::append(const char* _Ptr, size_t _Count) in append() argument 143 size_t newCapacity = _Count + m_Size + 1; // +1 for null termination in append() 155 memmove(pString + m_Size, _Ptr, _Count); in append() [all …]
|
D | PVRTString.h | 57 CPVRTString(const char* _Ptr, size_t _Count = npos); 65 CPVRTString(const CPVRTString& _Right, size_t _Roff = 0, size_t _Count = npos); 72 CPVRTString(size_t _Count, const char _Ch); 103 CPVRTString& append(const char* _Ptr, size_t _Count); 119 CPVRTString& append(const CPVRTString& _Str, size_t _Off, size_t _Count); 127 CPVRTString& append(size_t _Count, const char _Ch); 144 CPVRTString& assign(const char* _Ptr, size_t _Count); 160 CPVRTString& assign(const CPVRTString& _Str, size_t _Off, size_t _Count=npos); 168 CPVRTString& assign(size_t _Count, char _Ch); 220 int compare(size_t _Pos1, size_t _Num1, const CPVRTString& _Str, size_t _Off, size_t _Count) const; [all …]
|
D | PVRTStringHash.cpp | 26 CPVRTStringHash::CPVRTStringHash(const char* _Ptr, size_t _Count) : in CPVRTStringHash() argument 27 m_String(_Ptr, _Count) in CPVRTStringHash()
|
D | PVRTStringHash.h | 28 explicit CPVRTStringHash(const char* _Ptr, size_t _Count = CPVRTString::npos);
|
/external/libcxx/include/ |
D | span | 259 template <ptrdiff_t _Count> 261 constexpr span<element_type, _Count> first() const noexcept 263 static_assert(_Count >= 0, "Count must be >= 0 in span::first()"); 264 static_assert(_Count <= _Extent, "Count out of range in span::first()"); 265 return {data(), _Count}; 268 template <ptrdiff_t _Count> 270 constexpr span<element_type, _Count> last() const noexcept 272 static_assert(_Count >= 0, "Count must be >= 0 in span::last()"); 273 static_assert(_Count <= _Extent, "Count out of range in span::last()"); 274 return {data() + size() - _Count, _Count}; [all …]
|
/external/deqp-deps/glslang/glslang/Include/ |
D | Common.h | 141 size_t _Count = s.size(); 143 for (size_t _Next = 0; _Next < _Count; ++_Next)
|
/external/swiftshader/include/Direct3D/ |
D | d3d8types.h | 808 #define D3DVSD_CONST( _ConstantAddress, _Count ) \ argument 810 ((_Count) << D3DVSD_CONSTCOUNTSHIFT) | (_ConstantAddress))
|
/external/protobuf/objectivec/ |
D | README.md | 110 causing it to be created for you. For this, there is always a `\[NAME\]_Count`
|
D | GPBDescriptor.m | 390 hasOrCountSel_ = SelFromStrings(NULL, coreDesc->name, "_Count", NO);
|
/external/protobuf/objectivec/Tests/ |
D | GPBMessageTests+Runtime.m | 170 [NSString stringWithFormat:@"map%@_Count", name]); 297 [NSString stringWithFormat:@"map%@_Count", name]);
|