Home
last modified time | relevance | path

Searched refs:mw (Results 1 - 11 of 11) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dlibwebpenc.c44 WebPMemoryWriter mw = { 0 }; in libwebp_encode_frame() local
50 WebPMemoryWriterInit(&mw); in libwebp_encode_frame()
51 pic->custom_ptr = &mw; in libwebp_encode_frame()
62 ret = ff_get_encode_buffer(avctx, pkt, mw.size, 0); in libwebp_encode_frame()
65 memcpy(pkt->data, mw.mem, mw.size); in libwebp_encode_frame()
71 WebPMemoryWriterClear(&mw); in libwebp_encode_frame()
73 free(mw.mem); /* must use free() according to libwebp documentation */ in libwebp_encode_frame()
/third_party/node/deps/npm/node_modules/cli-table3/src/
H A Dlayout-manager.js38 let mw = 0;
41 mw = Math.max(mw, cell.x + (cell.colSpan || 1));
44 return mw;
/third_party/skia/src/gpu/geometry/
H A DGrQuad.cpp123 V4f mx, my, mw; in MakeFromSkQuad() local
124 map_quad_general(xs, ys, matrix, &mx, &my, &mw); in MakeFromSkQuad()
125 return GrQuad(mx, my, mw, type); in MakeFromSkQuad()
/third_party/python/Objects/
H A Dabstract.c971 PyNumberMethods *mw = Py_TYPE(w)->tp_as_number; in ternary_op() local
982 if (!Py_IS_TYPE(w, Py_TYPE(v)) && mw != NULL) { in ternary_op()
983 slotw = NB_TERNOP(mw, op_slot); in ternary_op()
1114 PySequenceMethods *mw = Py_TYPE(w)->tp_as_sequence; in PyNumber_Multiply() local
1119 else if (mw && mw->sq_repeat) { in PyNumber_Multiply()
1120 return sequence_repeat(mw->sq_repeat, w, v); in PyNumber_Multiply()
1289 PySequenceMethods *mw = Py_TYPE(w)->tp_as_sequence; in PyNumber_InPlaceMultiply() local
1298 else if (mw != NULL) { in PyNumber_InPlaceMultiply()
1302 if (mw in PyNumber_InPlaceMultiply()
[all...]
/third_party/rust/crates/clap/src/output/
H A Dhelp_template.rs105 Some(mw) => mw,
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fTextureUnitTests.cpp311 const float mw = de::max(de::abs(dwdx), de::abs(dwdy)); in calculateLodMax() local
312 return deFloatLog2(mu + mv + mw); in calculateLodMax()
327 const float mw = de::max(de::abs(dwdx), de::abs(dwdy)); in calculateLodMin() local
328 return deFloatLog2(de::max(mu, de::max(mv, mw))); in calculateLodMin()
/third_party/lame/libmp3lame/
H A Did3tag.c162 int const mw = (mask & window); in frame_id_matches() local
164 if (mw != 0 && mw != iw) { in frame_id_matches()
/third_party/vk-gl-cts/framework/opengl/
H A DgluTextureTestUtil.cpp264 float mw = de::max(deFloatAbs(dwdx), deFloatAbs(dwdy)); in computeLodFromDerivates() local
266 p = mode == LODMODE_MIN_BOUND ? de::max(de::max(mu, mv), mw) : (mu + mv + mw); in computeLodFromDerivates()
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp5404 const float mw = de::max(de::abs(dFdx.z()), de::abs(dFdy.z()));
5405 const float p = de::max(de::max(mu * texWidth, mv * texHeight), mw * texDepth);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderTextureFunctionTests.cpp340 float mw = de::max(deFloatAbs(dwdx), deFloatAbs(dwdy)); in computeLodFromDerivates() local
342 p = mode == LODMODE_MIN_BOUND ? de::max(de::max(mu, mv), mw) : (mu + mv + mw); in computeLodFromDerivates()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderTextureFunctionTests.cpp337 float mw = de::max(deFloatAbs(dwdx), deFloatAbs(dwdy)); in computeLodFromDerivates() local
339 p = mode == LODMODE_MIN_BOUND ? de::max(de::max(mu, mv), mw) : (mu + mv + mw); in computeLodFromDerivates()

Completed in 46 milliseconds