Home
last modified time | relevance | path

Searched refs:tmp_out (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dreduction_ops_common.h168 Tensor tmp_out;
177 &tmp_out, alloc_attr));
178 Functor::Reduce(ctx, tmp_out.flat<T>(),
186 helper.out_reshape(), &tmp_out, alloc_attr));
188 if (tmp_out.NumElements() == 0) {
196 Functor::FillIdentity(d, tmp_out.flat<T>(), reducer);
199 Functor::Reduce(ctx, helper.out<T, 0>(&tmp_out), helper.in<T, 1>(data),
203 Functor::Reduce(ctx, helper.out<T, 1>(&tmp_out), helper.in<T, 2>(data),
207 Functor::Reduce(ctx, helper.out<T, 1>(&tmp_out), helper.in<T, 2>(data),
212 Functor::Reduce(ctx, helper.out<T, 1>(&tmp_out), helper.in<T, 3>(data),
[all …]
Dmap_kernels.h53 TensorMap* tmp_out = output_tensor->scalar<Variant>()().get<TensorMap>(); in ForwardInputOrCreateNewMap() local
54 if (tmp_out == nullptr) { in ForwardInputOrCreateNewMap()
59 if (tmp_out->RefCountIsOne()) { in ForwardInputOrCreateNewMap()
62 *output_map = tmp_out; in ForwardInputOrCreateNewMap()
Dlist_kernels.cc103 TensorList* tmp_out = output_tensor->scalar<Variant>()().get<TensorList>(); in ForwardInputOrCreateNewList() local
104 if (tmp_out == nullptr) { in ForwardInputOrCreateNewList()
109 if (tmp_out->RefCountIsOne()) { in ForwardInputOrCreateNewList()
112 *output_list = tmp_out; in ForwardInputOrCreateNewList()
/external/oss-fuzz/projects/dnsmasq/
Dfuzz_util.c34 char *tmp_out = (char *)malloc(30); in LLVMFuzzerTestOneInput() local
36 parse_hex(t1, (unsigned char *)tmp_out, 30, NULL, NULL); in LLVMFuzzerTestOneInput()
37 parse_hex(t1, (unsigned char *)tmp_out, 30, NULL, &mac_type); in LLVMFuzzerTestOneInput()
38 free(tmp_out); in LLVMFuzzerTestOneInput()
/external/zstd/tests/gzip/
Dhelp-version.sh127 tmp_out=out-$$
243 rm -rf $tmp_in $tmp_in2 $tmp_dir $tmp_out $bigZ_in $zin $zin2
267 rm -rf $tmp_in $tmp_in2 $tmp_out $tmp_dir
/external/webrtc/common_audio/vad/
Dvad_filterbank.c123 int16_t tmp_out; in SplitFilter() local
135 tmp_out = *hp_data_out; in SplitFilter()
137 *lp_data_out++ += tmp_out; in SplitFilter()
/external/libxaac/decoder/drc_src/
Dimpd_drc_main_td_process.c50 FLOAT32 tmp_out[MAX_CHANNEL_COUNT]; in impd_down_mix() local
58 tmp_out[o_ch] = 0.0f; in impd_down_mix()
60 tmp_out[o_ch] += input_audio[i_ch][i] * in impd_down_mix()
65 input_audio[o_ch][i] = tmp_out[o_ch]; in impd_down_mix()
/external/wpa_supplicant_8/src/crypto/
Dtls_internal.c412 u8 *tmp_out = NULL; in tls_connection_prf() local
419 tmp_out = os_malloc(skip + out_len); in tls_connection_prf()
420 if (!tmp_out) in tls_connection_prf()
422 _out = tmp_out; in tls_connection_prf()
441 bin_clear_free(tmp_out, skip); in tls_connection_prf()
Dtls_wolfssl.c2059 byte *tmp_out; in tls_connection_get_eap_fast_key() local
2076 tmp_out = os_malloc(skip + out_len); in tls_connection_get_eap_fast_key()
2077 if (!tmp_out) in tls_connection_get_eap_fast_key()
2079 _out = tmp_out; in tls_connection_get_eap_fast_key()
2106 bin_clear_free(tmp_out, skip + out_len); in tls_connection_get_eap_fast_key()
Dtls_openssl.c4414 u8 *tmp_out = NULL; in tls_connection_get_eap_fast_key() local
4441 tmp_out = os_malloc(skip + out_len); in tls_connection_get_eap_fast_key()
4442 if (!tmp_out) in tls_connection_get_eap_fast_key()
4444 _out = tmp_out; in tls_connection_get_eap_fast_key()
4448 os_free(tmp_out); in tls_connection_get_eap_fast_key()
4474 bin_clear_free(tmp_out, skip); in tls_connection_get_eap_fast_key()
/external/libchrome/build/
Dcheck_gn_headers.py109 def ParseGNProjectJSON(gn, out_dir, tmp_out): argument
123 if f.startswith(tmp_out):
124 f = out_dir + f[len(tmp_out):]
/external/perfetto/tools/
Dgn_utils.py173 tmp_out = prepare_out_directory(gn_args, 'tmp.gen_buildflags')
174 build_targets(tmp_out, [BUILDFLAGS_TARGET], quiet=True)
175 src = os.path.join(tmp_out, 'gen', 'build_config', 'perfetto_build_flags.h')
177 shutil.rmtree(tmp_out)
/external/aac/libDRCdec/src/
DdrcGainDec_preprocess.cpp331 FIXP_DBL tmp = FX_SGL2FX_DBL(gainDb), tmp_out; in _compressorIO_sigmoid_inverse() local
347 tmp_out = fDivNormSigned(tmp, FX_SGL2FX_DBL(ioRatio), &e_out); in _compressorIO_sigmoid_inverse()
349 tmp_out = fAddNorm(DRC_INPUT_LOUDNESS_TARGET, 7, -tmp_out, e_out, &e_out); in _compressorIO_sigmoid_inverse()
350 *inLev = scaleValueSaturate(tmp_out, e_out - 7); in _compressorIO_sigmoid_inverse()
DFDK_drcDecLib.cpp847 FIXP_DBL tmp_out[8]; in FDK_drcDec_ApplyDownmix() local
877 tmp_out[oc] = (FIXP_DBL)0; in FDK_drcDec_ApplyDownmix()
879 tmp_out[oc] += in FDK_drcDec_ApplyDownmix()
888 audioChannels[oc][n] = tmp_out[oc]; in FDK_drcDec_ApplyDownmix()
/external/speex/libspeexdsp/
Dmdf.c971 spx_word32_t tmp_out; in speex_echo_cancellation() local
973tmp_out = SUB32(EXTEND32(st->input[chan*st->frame_size+i]), EXTEND32(st->e[chan*N+i+st->frame_size… in speex_echo_cancellation()
975tmp_out = SUB32(EXTEND32(st->input[chan*st->frame_size+i]), EXTEND32(st->y[chan*N+i+st->frame_size… in speex_echo_cancellation()
977 tmp_out = ADD32(tmp_out, EXTEND32(MULT16_16_P15(st->preemph, st->memE[chan]))); in speex_echo_cancellation()
984 out[i*C+chan] = WORD2INT(tmp_out); in speex_echo_cancellation()
985 st->memE[chan] = tmp_out; in speex_echo_cancellation()
/external/mesa3d/src/amd/vulkan/
Dradv_nir_to_llvm.c1873 LLVMValueRef* tmp_out = &ctx->abi.outputs[ac_llvm_reg_index_soa(VARYING_SLOT_LAYER, 0)]; in handle_vs_outputs_post() local
1874 if(!*tmp_out) { in handle_vs_outputs_post()
1881 LLVMBuildStore(ctx->ac.builder, ac_to_float(&ctx->ac, view_index), *tmp_out); in handle_vs_outputs_post()
/external/flac/test/
Dtest_flac.sh734 out_dir=./tmp_out