Searched refs:macro_prefix (Results 1 – 2 of 2) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | gen_dxgi_support_tables.py | 25 macro_prefix = 'F_' variable 176 'texture2D': macro_prefix + '2D', 177 'texture3D': macro_prefix + '3D', 178 'textureCube': macro_prefix + 'CUBE', 179 'shaderSample': macro_prefix + 'SAMPLE', 180 'renderTarget': macro_prefix + 'RT', 181 'multisampleRT': macro_prefix + 'MS', 182 'depthStencil': macro_prefix + 'DS', 183 'mipAutoGen': macro_prefix + 'MIPGEN' 328 prefix=macro_prefix,
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_helpers.cc | 647 std::string Int64ToString(const std::string& macro_prefix, int64 number) { in Int64ToString() argument 651 return StrCat(macro_prefix, "_LONGLONG(", number + 1, ") - 1"); in Int64ToString() 653 return StrCat(macro_prefix, "_LONGLONG(", number, ")"); in Int64ToString() 656 std::string UInt64ToString(const std::string& macro_prefix, uint64 number) { in UInt64ToString() argument 657 return StrCat(macro_prefix, "_ULONGLONG(", number, ")"); in UInt64ToString()
|