/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | simd_vec4.hpp | 61 namespace detail namespace 150 typedef glm::detail::fvec4SIMD simdVec4; 158 detail::fvec4SIMD const & x); 162 detail::fvec4SIMD abs(detail::fvec4SIMD const & x); 166 detail::fvec4SIMD sign(detail::fvec4SIMD const & x); 170 detail::fvec4SIMD floor(detail::fvec4SIMD const & x); 175 detail::fvec4SIMD trunc(detail::fvec4SIMD const & x); 184 detail::fvec4SIMD round(detail::fvec4SIMD const & x); 196 detail::fvec4SIMD ceil(detail::fvec4SIMD const & x); 201 detail::fvec4SIMD fract(detail::fvec4SIMD const & x); [all …]
|
D | simd_quat.hpp | 40 namespace detail namespace 96 detail::fquatSIMD operator- ( 97 detail::fquatSIMD const & q); 99 detail::fquatSIMD operator+ ( 100 detail::fquatSIMD const & q, 101 detail::fquatSIMD const & p); 103 detail::fquatSIMD operator* ( 104 detail::fquatSIMD const & q, 105 detail::fquatSIMD const & p); 107 detail::fvec4SIMD operator* ( [all …]
|
D | simd_vec4.inl | 5 namespace detail{ namespace 145 this->Data = _mm_add_ps(this->Data , glm::detail::one); 151 this->Data = _mm_sub_ps(this->Data, glm::detail::one); 256 return fvec4SIMD(_mm_add_ps(v.Data, glm::detail::one)); 261 return fvec4SIMD(_mm_sub_ps(v.Data, glm::detail::one)); 264 }//namespace detail 268 detail::fvec4SIMD const & x 281 GLM_FUNC_QUALIFIER detail::fvec4SIMD abs 283 detail::fvec4SIMD const & x 286 return detail::sse_abs_ps(x.Data); [all …]
|
D | hash.inl | 14 namespace detail namespace 37 glm::detail::hash_combine(seed, hasher(v.x)); 38 glm::detail::hash_combine(seed, hasher(v.y)); 47 glm::detail::hash_combine(seed, hasher(v.x)); 48 glm::detail::hash_combine(seed, hasher(v.y)); 49 glm::detail::hash_combine(seed, hasher(v.z)); 58 glm::detail::hash_combine(seed, hasher(v.x)); 59 glm::detail::hash_combine(seed, hasher(v.y)); 60 glm::detail::hash_combine(seed, hasher(v.z)); 61 glm::detail::hash_combine(seed, hasher(v.w)); [all …]
|
D | string_cast.inl | 8 namespace detail namespace 137 return detail::format("bvec1(%s)", 138 x[0] ? detail::LabelTrue : detail::LabelFalse); 147 return detail::format("bvec2(%s, %s)", 148 x[0] ? detail::LabelTrue : detail::LabelFalse, 149 x[1] ? detail::LabelTrue : detail::LabelFalse); 158 return detail::format("bvec3(%s, %s, %s)", 159 x[0] ? detail::LabelTrue : detail::LabelFalse, 160 x[1] ? detail::LabelTrue : detail::LabelFalse, 161 x[2] ? detail::LabelTrue : detail::LabelFalse); [all …]
|
D | simd_mat4.hpp | 33 namespace detail namespace 137 typedef detail::fmat4x4SIMD simdMat4; 145 detail::fmat4x4SIMD const & x); 150 detail::fmat4x4SIMD matrixCompMult( 151 detail::fmat4x4SIMD const & x, 152 detail::fmat4x4SIMD const & y); 158 detail::fmat4x4SIMD outerProduct( 159 detail::fvec4SIMD const & c, 160 detail::fvec4SIMD const & r); 164 detail::fmat4x4SIMD transpose( [all …]
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | type_precision.hpp | 50 typedef detail::int8 lowp_int8; 54 typedef detail::int16 lowp_int16; 58 typedef detail::int32 lowp_int32; 62 typedef detail::int64 lowp_int64; 66 typedef detail::int8 lowp_int8_t; 70 typedef detail::int16 lowp_int16_t; 74 typedef detail::int32 lowp_int32_t; 78 typedef detail::int64 lowp_int64_t; 82 typedef detail::int8 lowp_i8; 86 typedef detail::int16 lowp_i16; [all …]
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | _swizzle.hpp | 7 namespace detail namespace 59 …struct _swizzle_base2 : public _swizzle_base1<N, T, P, vecType, E0,E1,E2,E3, detail::is_aligned<P>… 137 …, E0,E1,E2,E3, 1> : public _swizzle_base1<N, T, P, vecType, E0,E1,E2,E3, detail::is_aligned<P>::va… 268 namespace detail namespace 301 struct { detail::_swizzle<2, T, P, V, 0,0,-1,-2> E0 ## E0; }; \ 302 struct { detail::_swizzle<2, T, P, V, 0,1,-1,-2> E0 ## E1; }; \ 303 struct { detail::_swizzle<2, T, P, V, 1,0,-1,-2> E1 ## E0; }; \ 304 struct { detail::_swizzle<2, T, P, V, 1,1,-1,-2> E1 ## E1; }; 307 struct { detail::_swizzle<3,T, P, V, 0,0,0,-1> E0 ## E0 ## E0; }; \ 308 struct { detail::_swizzle<3,T, P, V, 0,0,1,-1> E0 ## E0 ## E1; }; \ [all …]
|
D | type_int.hpp | 16 namespace detail namespace 206 typedef detail::int8 int8; 207 typedef detail::int16 int16; 208 typedef detail::int32 int32; 209 typedef detail::int64 int64; 211 typedef detail::uint8 uint8; 212 typedef detail::uint16 uint16; 213 typedef detail::uint32 uint32; 214 typedef detail::uint64 uint64; 224 typedef detail::lowp_int_t lowp_int; [all …]
|
/third_party/json/include/nlohmann/detail/ |
D | json_pointer.hpp | 74 return detail::concat(a, '/', detail::escape(b)); in to_string() 163 JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent", nullptr)); in pop_back() 175 JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent", nullptr)); in back() 221 …JSON_THROW(detail::parse_error::create(106, 0, detail::concat("array index '", s, "' must not begi… in array_index() 227 …JSON_THROW(detail::parse_error::create(109, 0, detail::concat("array index '", s, "' is not a numb… in array_index() 238 …JSON_THROW(detail::out_of_range::create(404, detail::concat("unresolved reference token '", s, "'"… in array_index() 245 …JSON_THROW(detail::out_of_range::create(410, detail::concat("array index ", s, " exceeds size_type… in array_index() 256 JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent", nullptr)); 284 case detail::value_t::null: in get_and_create() 299 case detail::value_t::object: in get_and_create() [all …]
|
/third_party/node/test/fixtures/wpt/user-timing/ |
D | structured-serialize-detail.any.js | 3 const detail = { randomInfo: 123 } variable 4 const markEntry = new PerformanceMark("A", { detail }); field 5 assert_equals(markEntry.detail.randomInfo, detail.randomInfo); 6 assert_not_equals(markEntry.detail, detail); 11 const detail = { randomInfo: 123 } variable 12 const markEntry = performance.mark("A", { detail }); field 13 assert_equals(markEntry.detail.randomInfo, detail.randomInfo); 14 assert_not_equals(markEntry.detail, detail); 20 assert_equals(markEntry.detail, null); 25 const detail = { unserializable: Symbol() }; variable [all …]
|
D | measure-with-dict.any.js | 16 [{ entryType: "measure", name: "measure1", detail: null, startTime: 0 }, property 17 { entryType: "measure", name: "measure2", detail: null, startTime: 0 }, property 18 { entryType: "measure", name: "measure3", detail: null, startTime: 0 }, property 19 { entryType: "measure", name: "measure4", detail: null }, property 20 { entryType: "measure", name: "measure5", detail: null, startTime: 0 }, property 21 { entryType: "measure", name: "measure6", detail: null, startTime: timeStamp1 }, property 22 …{ entryType: "measure", name: "measure7", detail: null, startTime: timeStamp1, duration: timeStamp… property 23 { entryType: "measure", name: "measure8", detail: null, startTime: 0 }, property 24 { entryType: "measure", name: "measure9", detail: null, startTime: 0 }, property 25 { entryType: "measure", name: "measure10", detail: null, startTime: timeStamp1 }, property [all …]
|
D | mark-l3.any.js | 6 [{ entryType: "mark", name: "mark1", detail: null}, property 7 { entryType: "mark", name: "mark2", detail: null}, property 8 { entryType: "mark", name: "mark3", detail: null}, property 9 { entryType: "mark", name: "mark4", detail: null}, property 10 { entryType: "mark", name: "mark5", detail: null}, property 11 { entryType: "mark", name: "mark6", detail: {}}, property 12 { entryType: "mark", name: "mark7", detail: {info: 'abc'}}, property 13 { entryType: "mark", name: "mark8", detail: null, startTime: 234.56}, property 14 { entryType: "mark", name: "mark9", detail: {count: 3}, startTime: 345.67}]; property 33 returned_entries.push(self.performance.mark("mark5", {detail: null})); property [all …]
|
/third_party/node/deps/npm/lib/utils/ |
D | error-message.js | 10 const jsonError = (er, npm, { summary, detail }) => { argument 16 detail: messageText(detail), 24 const detail = [] variable 37 detail.push(['', '']) 42 detail.push(['', explanation]) 50 detail.push([cmd, 'Try creating one first with: npm i --package-lock-only']) 51 detail.push([cmd, `Original error: ${er.message}`]) 61 detail.push([ 101 detail.push([ 122 detail.push([ [all …]
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/ |
D | fwd.hpp | 100 typedef detail::int8 lowp_int8; 104 typedef detail::int16 lowp_int16; 108 typedef detail::int32 lowp_int32; 112 typedef detail::int64 lowp_int64; 116 typedef detail::int8 lowp_int8_t; 120 typedef detail::int16 lowp_int16_t; 124 typedef detail::int32 lowp_int32_t; 128 typedef detail::int64 lowp_int64_t; 132 typedef detail::int8 lowp_i8; 136 typedef detail::int16 lowp_i16; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Endian.h | 27 namespace detail { 53 (detail::PickAlignment<value_type, alignment>::value)), in read() 75 (detail::PickAlignment<value_type, alignment>::value)), in write() 95 memory, (detail::PickAlignment<value_type, alignment>::value)), in readAtBitAlignment() 130 memory, (detail::PickAlignment<value_type, alignment>::value)), in writeAtBitAlignment() 164 memory, (detail::PickAlignment<value_type, alignment>::value)), in writeAtBitAlignment() 170 namespace detail { 232 typedef detail::packed_endian_specific_integral 234 typedef detail::packed_endian_specific_integral 236 typedef detail::packed_endian_specific_integral [all …]
|
/third_party/json/include/nlohmann/ |
D | json.hpp | 98 template<detail::value_t> friend struct detail::external_constructor; 106 friend class ::nlohmann::detail::parser; 107 friend ::nlohmann::detail::serializer<basic_json>; 109 friend class ::nlohmann::detail::iter_impl; 111 friend class ::nlohmann::detail::binary_writer; 113 friend class ::nlohmann::detail::binary_reader; 115 friend class ::nlohmann::detail::json_sax_dom_parser; 117 friend class ::nlohmann::detail::json_sax_dom_callback_parser; 118 friend class ::nlohmann::detail::exception; 125 using lexer = ::nlohmann::detail::lexer_base<basic_json>; [all …]
|
/third_party/skia/third_party/externals/dawn/src/common/ |
D | Result.h | 91 namespace detail { 140 intptr_t mPayload = detail::kEmptyPayload; 166 intptr_t mPayload = detail::kEmptyPayload; 201 intptr_t mPayload = detail::kEmptyPayload; 281 namespace detail { 299 Result<T*, E>::Result(T* success) : mPayload(detail::MakePayload(success, detail::Success)) { in Result() 304 : mPayload(detail::MakePayload(error.release(), detail::Error)) { in Result() 310 other.mPayload = detail::kEmptyPayload; in Result() 317 ASSERT(mPayload == detail::kEmptyPayload); 320 other.mPayload = detail::kEmptyPayload; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Endian.h | 34 namespace detail { 70 memory, (detail::PickAlignment<value_type, alignment>::value)), in read() 102 memory, (detail::PickAlignment<value_type, alignment>::value)), in write() 128 memory, (detail::PickAlignment<value_type, alignment>::value)), in readAtBitAlignment() 163 memory, (detail::PickAlignment<value_type, alignment>::value)), in writeAtBitAlignment() 197 memory, (detail::PickAlignment<value_type, alignment>::value)), in writeAtBitAlignment() 204 namespace detail { 272 detail::packed_endian_specific_integral<uint16_t, little, unaligned>; 274 detail::packed_endian_specific_integral<uint32_t, little, unaligned>; 276 detail::packed_endian_specific_integral<uint64_t, little, unaligned>; [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
D | civil_time.h | 267 using civil_year = detail::civil_year; 268 using civil_month = detail::civil_month; 269 using civil_day = detail::civil_day; 270 using civil_hour = detail::civil_hour; 271 using civil_minute = detail::civil_minute; 272 using civil_second = detail::civil_second; 282 using detail::weekday; 289 using detail::get_weekday; 315 using detail::next_weekday; 316 using detail::prev_weekday; [all …]
|
/third_party/node/test/parallel/ |
D | test-events-customevent.js | 36 strictEqual(ev.detail, null); 48 detail: 56, property 56 strictEqual(ev.detail, 56); 62 const ev = new CustomEvent('$', { detail: i }); property 63 strictEqual(ev.detail, i); 70 detail: 56, property 72 strictEqual(ev.detail, 56); 74 ev.detail = 96; 79 strictEqual(ev.detail, 56); 84 detail: 96, property [all …]
|
D | test-http2-perf_hooks.js | 27 assert.strictEqual(typeof entry.detail.pingRTT, 'number'); 28 assert.strictEqual(typeof entry.detail.streamAverageDuration, 'number'); 29 assert.strictEqual(typeof entry.detail.streamCount, 'number'); 30 assert.strictEqual(typeof entry.detail.framesReceived, 'number'); 31 assert.strictEqual(typeof entry.detail.framesSent, 'number'); 32 assert.strictEqual(typeof entry.detail.bytesWritten, 'number'); 33 assert.strictEqual(typeof entry.detail.bytesRead, 'number'); 34 assert.strictEqual(typeof entry.detail.maxConcurrentStreams, 'number'); 37 assert.strictEqual(entry.detail.streamCount, 1); 38 assert(entry.detail.framesReceived >= 3); [all …]
|
D | test-dns-perf_hooks.js | 38 assert.strictEqual(typeof entry.detail, 'object'); 41 assert.strictEqual(typeof entry.detail.hostname, 'string'); 42 assert.strictEqual(typeof entry.detail.family, 'number'); 43 assert.strictEqual(typeof entry.detail.hints, 'number'); 44 assert.strictEqual(typeof entry.detail.verbatim, 'boolean'); 45 assert.strictEqual(Array.isArray(entry.detail.addresses), true); 48 assert.strictEqual(typeof entry.detail.host, 'string'); 49 assert.strictEqual(typeof entry.detail.port, 'number'); 50 assert.strictEqual(typeof entry.detail.hostname, 'string'); 51 assert.strictEqual(typeof entry.detail.service, 'string'); [all …]
|
/third_party/jsframework/test/ut/model/ |
D | index.ts | 119 let detail = { lunch: 'banana' }; variable 120 vm.$emit('event1', detail); 124 detail = { lunch: 'banana' }; 125 subVm.$emit('event1', detail); 131 const detail = { lunch: 'banana' }; constant 132 vm.$dispatch('event1', detail); 136 subVm.$dispatch('event1', detail); 142 const detail = { lunch: 'banana' }; constant 143 vm.$broadcast('event1', detail); 147 subVm.$broadcast('event1', detail); [all …]
|
/third_party/mesa3d/include/CL/ |
D | cl2.hpp | 703 namespace detail { namespace 793 namespace detail namespace 985 namespace detail { namespace 1286 F(cl_kernel_work_group_info, CL_KERNEL_COMPILE_WORK_GROUP_SIZE, cl::detail::size_t_array) \ 1380 F(cl_kernel_sub_group_info, CL_KERNEL_LOCAL_SIZE_FOR_SUB_GROUP_COUNT, cl::detail::size_t_array) 1399 struct param_traits<detail:: token,param_name> \ 1761 detail::errHandler(retain(), __RETAIN_ERR); in Wrapper() 1773 detail::errHandler(retain(), __RETAIN_ERR); in Wrapper() 1785 detail::errHandler(release(), __RELEASE_ERR); in operator =() 1787 detail::errHandler(retain(), __RETAIN_ERR); in operator =() [all …]
|