Home
last modified time | relevance | path

Searched refs:temp_output (Results 1 – 15 of 15) sorted by relevance

/external/rappor/client/cpp/
Dopenssl_hash_impl.cc61 std::vector<uint8_t> temp_output; in HmacDrbg() local
69 temp_output.resize(32, 0); in HmacDrbg()
80 if (!HmacSha256(std::string(k_array, k_array + 32), temp_str, &temp_output)) { in HmacDrbg()
83 std::string k(temp_output.begin(), temp_output.end()); in HmacDrbg()
84 if (!HmacSha256(k, v, &temp_output)) { in HmacDrbg()
87 v = std::string(temp_output.begin(), temp_output.end()); in HmacDrbg()
88 if (!HmacSha256(k, v + std::string("\1", 1) + key + value, &temp_output)) { in HmacDrbg()
91 k = std::string(temp_output.begin(), temp_output.end()); in HmacDrbg()
92 if (!HmacSha256(k, v, &temp_output)) { in HmacDrbg()
95 v = std::string(temp_output.begin(), temp_output.end()); in HmacDrbg()
[all …]
/external/toolchain-utils/binary_search_tool/full_bisect_test/
Dinteractive_test.sh21 full_bisect_test/bin-trees > full_bisect_test/temp_output.txt
23 diff full_bisect_test/temp_output.txt full_bisect_test/good-output.txt &> /dev/null
27 rm -f full_bisect_test/temp_output.txt
31 diff full_bisect_test/temp_output.txt full_bisect_test/bad-output-1.txt &> /dev/null
35 rm -f full_bisect_test/temp_output.txt
38 diff full_bisect_test/temp_output.txt full_bisect_test/bad-output-2.txt &> /dev/null
41 rm -f full_bisect_test/temp_output.txt
44 diff full_bisect_test/temp_output.txt full_bisect_test/bad-output-3.txt &> /dev/null
47 rm -f full_bisect_test/temp_output.txt
53 rm -f full_bisect_test/temp_output.txt
/external/tensorflow/tensorflow/c/experimental/gradients/
Dmath_grad.cc336 AbstractTensorHandle* temp_output; in Compute() local
340 TF_RETURN_IF_ERROR(SafeConj(ctx, X, &temp_output, name.c_str())); in Compute()
342 AbstractTensorHandlePtr Conj_X(temp_output); in Compute()
346 TF_RETURN_IF_ERROR(OnesLike(ctx, Conj_X.get(), &temp_output, name.c_str())); in Compute()
348 AbstractTensorHandlePtr Ones_X(temp_output); in Compute()
353 AddV2(ctx, Ones_X.get(), Conj_X.get(), &temp_output, name.c_str())); in Compute()
355 AbstractTensorHandlePtr Conj_XP1(temp_output); in Compute()
414 AbstractTensorHandle* temp_output; in Compute() local
417 TF_RETURN_IF_ERROR(Neg(ctx, upstream_grad, &temp_output, in Compute()
419 AbstractTensorHandlePtr MinusU(temp_output); in Compute()
[all …]
Dgrad_test_helper.cc127 for (auto temp_output : temp_outputs) { in BuildGradModel() local
128 temp_output->Unref(); in BuildGradModel()
/external/webrtc/logging/rtc_event_log/events/
Drtc_event_audio_playout.h63 std::vector<LoggedAudioPlayoutEvent> temp_output; in Parse() local
65 encoded_bytes, batched, temp_output); in Parse()
66 for (const LoggedAudioPlayoutEvent& event : temp_output) { in Parse()
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/lhlo/
Dlhlo-legalize-to-affine.mlir242 // CHECK-NEXT: %[[temp_output:.*]] = memref.alloc() : memref<1x128x512xf32>
246 // CHECK-NEXT: affine.store %[[zero]], %[[temp_output]][%{{.*}}, %{{.*}}, %{{.*}}] : memref<1…
259 // CHECK-NEXT: %[[prev_value:.*]] = affine.load %[[temp_output]][%[[batch0]], %[[batch1]], …
261 // CHECK-NEXT: affine.store %[[final_value]], %[[temp_output]][%[[batch0]], %[[batch1]], %[…
288 // CHECK-NEXT: %[[temp_output:.*]] = memref.alloc() : memref<5x8x6xf32>
292 // CHECK-NEXT: affine.store %[[zero]], %[[temp_output]][%{{.*}}, %{{.*}}, %{{.*}}] : memref<5…
312 // CHECK-NEXT: %[[prev_value:.*]] = affine.load %[[temp_output]][%[[batch0]], %[[offset0]…
314 // CHECK-NEXT: affine.store %[[final_value]], %[[temp_output]][%[[batch0]], %[[offset0]],…
342 // CHECK-NEXT: %[[temp_output:.*]] = memref.alloc() : memref<4x5x8x6xf16>
347 // CHECK-NEXT: affine.store %[[zero]], %[[temp_output]][%{{.*}}, %{{.*}}, %{{.*}}, %{{.*}}]…
[all …]
/external/python/cpython3/Lib/test/
Dtest_generated_cases.py106 with open(self.temp_output_filename) as temp_output:
107 lines = temp_output.readlines()
907 with open(self.temp_output_filename) as temp_output:
908 lines = temp_output.readlines()
/external/tensorflow/tensorflow/python/autograph/pyct/
Dloader_test.py100 with open(module.__file__, 'r') as temp_output:
101 self.assertAstMatches(node, temp_output.read())
/external/webrtc/modules/audio_coding/acm2/
Dacm_receiver.cc167 int16_t temp_output[AudioFrame::kMaxDataSizeSamples]; in GetAudio() local
171 temp_output); in GetAudio()
/external/AFLplusplus/utils/libtokencap/
DREADME.md49 export AFL_TOKEN_FILE=$PWD/temp_output.txt
58 sort -u temp_output.txt >afl_dictionary.txt
/external/tensorflow/tensorflow/tools/graph_transforms/
Dsparsify_gather.cc594 GraphDef temp_output; in SparsifyGather() local
605 ckpt_reader, &temp_output)); in SparsifyGather()
607 TF_RETURN_IF_ERROR(SparsifyGatherInternal(temp_output, shapes_and_slices, in SparsifyGather()
/external/pytorch/aten/src/ATen/native/cpu/
DUpSampleKernel.cpp1602 at::Tensor temp_output, temp_input = input; in separable_upsample_generic_Nd_kernel_impl() local
1622 temp_output = at::empty(temp_oshape, input.options()); in separable_upsample_generic_Nd_kernel_impl()
1624 temp_output = output; in separable_upsample_generic_Nd_kernel_impl()
1632 temp_output, temp_input, interp_dim, align_corners, scales, antialias); in separable_upsample_generic_Nd_kernel_impl()
1633 temp_input = temp_output; in separable_upsample_generic_Nd_kernel_impl()
1644 temp_output = at::empty(temp_oshape, input.options()); in separable_upsample_generic_Nd_kernel_impl()
1646 temp_output = output; in separable_upsample_generic_Nd_kernel_impl()
1654 temp_output, temp_input, interp_dim, align_corners, scales, antialias); in separable_upsample_generic_Nd_kernel_impl()
1655 temp_input = temp_output; in separable_upsample_generic_Nd_kernel_impl()
/external/tensorflow/tensorflow/lite/tools/optimize/calibration/custom_logging_ops/
Dlstm.cc193 std::vector<float> temp_output(n_batch * n_cell); in LstmStepWithAuxInput() local
196 n_batch, temp_output.data()); in LstmStepWithAuxInput()
198 temp_output.data(), n_cell * n_batch, in LstmStepWithAuxInput()
/external/libaom/av1/common/arm/
Dav1_inv_txfm_neon.c64 int16x8_t temp_output; in lowbd_add_flip_buffer_8xn_neon() local
66 temp_output = vreinterpretq_s16_u16(vmovl_u8(vld1_u8(output))); in lowbd_add_flip_buffer_8xn_neon()
67 temp_output = vaddq_s16(temp_output, in[j]); in lowbd_add_flip_buffer_8xn_neon()
68 vst1_u8(output, vqmovun_s16(temp_output)); in lowbd_add_flip_buffer_8xn_neon()
76 int16x8_t temp_output[2]; in lowbd_get_recon_16x16_neon() local
78 temp_output[0] = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(pred))); in lowbd_get_recon_16x16_neon()
79 temp_output[0] = vaddq_s16(temp_output[0], res0); in lowbd_get_recon_16x16_neon()
80 temp_output[1] = vreinterpretq_s16_u16(vmovl_u8(vget_high_u8(pred))); in lowbd_get_recon_16x16_neon()
81 temp_output[1] = vaddq_s16(temp_output[1], res1); in lowbd_get_recon_16x16_neon()
83 vcombine_u8(vqmovun_s16(temp_output[0]), vqmovun_s16(temp_output[1])); in lowbd_get_recon_16x16_neon()
/external/tensorflow/tensorflow/compiler/xla/service/spmd/
Dspmd_partitioner.cc2336 auto temp_output = CreateZero(temp_output_shape, &b_); in HandleConcatenate() local
2352 temp_output = b_.AddInstruction(HloInstruction::CreateDynamicUpdateSlice( in HandleConcatenate()
2353 temp_output_shape, temp_output, spmd_operand, start_indices)); in HandleConcatenate()
2369 &b_, temp_output, in HandleConcatenate()