Home
last modified time | relevance | path

Searched refs:do_store (Results 1 - 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dyuv.c129 int src_width, int do_store) { in WebPConvertARGBToUV_C()
143 if (do_store) { in WebPConvertARGBToUV_C()
159 if (do_store) { in WebPConvertARGBToUV_C()
248 int src_width, int do_store);
128 WebPConvertARGBToUV_C(const uint32_t* argb, uint8_t* u, uint8_t* v, int src_width, int do_store) WebPConvertARGBToUV_C() argument
H A Dyuv_neon.c135 int src_width, int do_store) { in ConvertARGBToUV_NEON()
147 if (do_store) { in ConvertARGBToUV_NEON()
159 WebPConvertARGBToUV_C(argb + i, u, v, src_width - i, do_store); in ConvertARGBToUV_NEON()
134 ConvertARGBToUV_NEON(const uint32_t* argb, uint8_t* u, uint8_t* v, int src_width, int do_store) ConvertARGBToUV_NEON() argument
H A Ddsp.h528 // Convert ARGB samples to U/V with downsampling. do_store should be '1' for
532 int src_width, int do_store);
544 int src_width, int do_store);
H A Dyuv_sse41.c506 int src_width, int do_store) { in ConvertARGBToUV_SSE41()
525 if (!do_store) { in ConvertARGBToUV_SSE41()
535 WebPConvertARGBToUV_C(argb + i, u, v, src_width - i, do_store); in ConvertARGBToUV_SSE41()
504 ConvertARGBToUV_SSE41(const uint32_t* argb, uint8_t* u, uint8_t* v, int src_width, int do_store) ConvertARGBToUV_SSE41() argument
H A Dyuv_sse2.c660 int src_width, int do_store) { in ConvertARGBToUV_SSE2()
679 if (!do_store) { in ConvertARGBToUV_SSE2()
689 WebPConvertARGBToUV_C(argb + i, u, v, src_width - i, do_store); in ConvertARGBToUV_SSE2()
658 ConvertARGBToUV_SSE2(const uint32_t* argb, uint8_t* u, uint8_t* v, int src_width, int do_store) ConvertARGBToUV_SSE2() argument
/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_conf.c472 static int do_store(SSL_CONF_CTX *cctx, in do_store() function
514 return do_store(cctx, NULL, value, NULL, 0); in cmd_ChainCAPath()
519 return do_store(cctx, value, NULL, NULL, 0); in cmd_ChainCAFile()
524 return do_store(cctx, NULL, NULL, value, 0); in cmd_ChainCAStore()
529 return do_store(cctx, NULL, value, NULL, 1); in cmd_VerifyCAPath()
534 return do_store(cctx, value, NULL, NULL, 1); in cmd_VerifyCAFile()
539 return do_store(cctx, NULL, NULL, value, 1); in cmd_VerifyCAStore()
/third_party/openssl/ssl/
H A Dssl_conf.c472 static int do_store(SSL_CONF_CTX *cctx, in do_store() function
514 return do_store(cctx, NULL, value, NULL, 0); in cmd_ChainCAPath()
519 return do_store(cctx, value, NULL, NULL, 0); in cmd_ChainCAFile()
524 return do_store(cctx, NULL, NULL, value, 0); in cmd_ChainCAStore()
529 return do_store(cctx, NULL, value, NULL, 1); in cmd_VerifyCAPath()
534 return do_store(cctx, value, NULL, NULL, 1); in cmd_VerifyCAFile()
539 return do_store(cctx, NULL, NULL, value, 1); in cmd_VerifyCAStore()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir_lower_storage_image.c565 nir_ssa_def *do_store = image_coord_is_in_bounds(b, deref, coord); in lower_image_store_instr() local
576 do_store = nir_iand(b, do_store, is_raw); in lower_image_store_instr()
578 nir_push_if(b, do_store); in lower_image_store_instr()
/third_party/ffmpeg/libavcodec/arm/
H A Dvp9mc_neon.S471 .macro do_store qreg1, dreg1, qreg2, dreg2, qreg3, dreg3, qreg4, dreg4, tmp1, tmp2, tmp3, tmp4, type
563 do_store q1, d2, q2, d4, q3, d6, q4, d8, d3, d5, d7, d9, \type
571 do_store q1, d2, q2, d4, q3, d6, q8, d16, d3, d5, d7, d17, \type
579 do_store q1, d2, q2, d4, q3, d6, q12, d24, d3, d5, d7, d25, \type
/third_party/ffmpeg/libavcodec/aarch64/
H A Dvp9mc_neon.S407 .macro do_store reg1, reg2, reg3, reg4, tmp1, tmp2, tmp3, tmp4, type
502 do_store v1, v2, v3, v4, v5, v6, v7, v28, \type
510 do_store v1, v2, v3, v4, v5, v6, v7, v28, \type
518 do_store v1, v2, v3, v4, v5, v6, v7, v28, \type
/third_party/node/deps/v8/src/compiler/
H A Deffect-control-linearizer.cc5100 auto do_store = __ MakeLabel(); in WrapFastCall() local
5103 __ GotoIf(__ Word32Equal(old_scope_value, __ Int32Constant(1)), &do_store); in WrapFastCall() local
5106 __ Unreachable(&do_store); in WrapFastCall()
5107 __ Bind(&do_store); in WrapFastCall()
5769 auto do_store = __ MakeLabel(MachineRepresentation::kWord32); in LowerTransitionAndStoreElement() local
5771 __ GotoIf(ObjectIsSmi(value), &do_store, kind); in LowerTransitionAndStoreElement() local
5779 __ GotoIfNot(IsElementsKindGreaterThan(kind, HOLEY_ELEMENTS), &do_store, in LowerTransitionAndStoreElement() local
5788 __ Goto(&do_store, kind); in LowerTransitionAndStoreElement()
5804 __ Goto(&do_store, __ Int32Constant(HOLEY_DOUBLE_ELEMENTS)); in LowerTransitionAndStoreElement()
5809 __ Goto(&do_store, _ in LowerTransitionAndStoreElement()
5887 auto do_store = __ MakeLabel(); LowerTransitionAndStoreNumberElement() local
5899 &do_store); LowerTransitionAndStoreNumberElement() local
5948 auto do_store = __ MakeLabel(); LowerTransitionAndStoreNonNumberElement() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_nir_soa.c1375 LLVMValueRef do_store = lp_build_const_int32(gallivm, -1); in emit_store_mem() local
1379 do_store = LLVMBuildAnd(builder, do_store, ssbo_oob_cmp, ""); in emit_store_mem()
1388 store_cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, do_store, lp_build_const_int32(gallivm, 0), ""); in emit_store_mem()
/third_party/node/deps/v8/src/ic/
H A Daccessor-assembler.cc2169 Label do_store(this); in HandleStoreFieldAndReturn()
2172 &do_store); in HandleStoreFieldAndReturn()
2188 BIND(&do_store); in HandleStoreFieldAndReturn()
/third_party/vixl/src/aarch64/
H A Dsimulator-aarch64.cc4865 bool do_store = true; in Simulator() local
4867 do_store = local_monitor_.IsExclusive(address, access_size) && in Simulator()
4869 WriteWRegister(rs, do_store ? 0 : 1); in Simulator()
4878 if (do_store) { in Simulator()

Completed in 56 milliseconds