/external/double-conversion/test/cctest/ |
D | test-conversions.cc | 2099 int processed; in TEST() local 2106 CHECK_EQ(0.0, StrToD("", flags, 0.0, &processed, &all_used)); in TEST() 2109 CHECK_EQ(1.0, StrToD("", flags, 1.0, &processed, &all_used)); in TEST() 2112 CHECK_EQ(0.0, StrToD(" ", flags, 0.0, &processed, &all_used)); in TEST() 2115 CHECK_EQ(1.0, StrToD(" ", flags, 1.0, &processed, &all_used)); in TEST() 2118 CHECK_EQ(42.0, StrToD("42", flags, 0.0, &processed, &all_used)); in TEST() 2121 CHECK_EQ(42.0, StrToD(" + 42 ", flags, 0.0, &processed, &all_used)); in TEST() 2124 CHECK_EQ(-42.0, StrToD(" - 42 ", flags, 0.0, &processed, &all_used)); in TEST() 2127 CHECK_EQ(Double::NaN(), StrToD("x", flags, 1.0, &processed, &all_used)); in TEST() 2128 CHECK_EQ(0, processed); in TEST() [all …]
|
/external/lzma/C/ |
D | 7zFile.c | 167 DWORD processed = 0; in File_Read() local 168 const BOOL res = ReadFile(p->handle, data, curSize, &processed, NULL); in File_Read() 169 data = (void *)((Byte *)data + processed); in File_Read() 170 originalSize -= processed; in File_Read() 171 *size += processed; in File_Read() 175 if (processed == 0) in File_Read() 185 const size_t processed = fread(data, 1, curSize, p->file); in File_Read() local 186 data = (void *)((Byte *)data + (size_t)processed); in File_Read() 187 originalSize -= processed; in File_Read() 188 *size += processed; in File_Read() [all …]
|
D | Bra.h | 62 The pointer to position in (data) buffer after last byte that was processed. 65 current processed position also will be changed for next call. 81 processed size can be calculated as: 82 SizeT processed = Conv(data, size, pc) - data; 83 if (processed == 0) 86 then (processed == 0) is allowed. 94 SizeT processed = Conv(data, size, pc) - data; 95 if (processed == 0 && no_more_input_data_after_size) 97 data += processed; 98 size -= processed; [all …]
|
D | 7zStream.c | 35 size_t processed = size; 36 RINOK(ISeqInStream_Read(stream, buf, &processed)) 37 if (processed == 0) 39 buf = (void *)((Byte *)buf + processed); 40 size -= processed; 54 size_t processed = 1; in SeqInStream_ReadByte() local 55 RINOK(ISeqInStream_Read(stream, buf, &processed)) in SeqInStream_ReadByte() 56 return (processed == 1) ? SZ_OK : SZ_ERROR_INPUT_EOF; in SeqInStream_ReadByte() 81 size_t processed = size; in LookInStream_Read2() local 82 RINOK(ILookInStream_Read(stream, buf, &processed)) in LookInStream_Read2() [all …]
|
/external/armnn/samples/ObjectDetection/src/ |
D | ObjectDetectionPipeline.cpp | 17 void od::ObjDetectionPipeline::Inference(const cv::Mat& processed, common::InferenceResults<float>&… in Inference() argument 19 m_executor->Run(processed.data, processed.total() * processed.elemSize(), result); in Inference() 33 void ObjDetectionPipeline::PreProcessing(const cv::Mat& frame, cv::Mat& processed) in PreProcessing() argument 37 ResizeWithPad(frame, processed, m_processedFrame, m_executor->GetImageAspectRatio()); in PreProcessing() 46 void MobileNetSSDv1::PreProcessing(const cv::Mat& frame, cv::Mat& processed) in PreProcessing() argument 48 ObjDetectionPipeline::PreProcessing(frame, processed); in PreProcessing() 52 processed.convertTo(processed, CV_32FC3, 1 / 127.5, -1); in PreProcessing() 63 void YoloV3Tiny::PreProcessing(const cv::Mat& frame, cv::Mat& processed) in PreProcessing() argument 65 ObjDetectionPipeline::PreProcessing(frame, processed); in PreProcessing() 68 processed.convertTo(processed, CV_32FC3); in PreProcessing()
|
/external/lzma/CPP/7zip/Common/ |
D | CWrappers.h | 27 UInt64 Processed; member 48 UInt64 Processed; member 62 UInt64 Processed; member 73 Processed = 0; in Init() 77 UInt64 GetProcessed() const { return Processed + (size_t)(Cur - Buf); } in GetProcessed() 94 UInt64 Processed; 105 Processed = 0; 109 // UInt64 GetProcessed() const { return Processed + (Cur - Buf); } 135 UInt64 Processed; member 146 Processed = 0; in Init() [all …]
|
/external/ComputeLibrary/src/core/CL/cl_kernels/common/ |
D | bitwise_op.cl | 31 * -# -DVEC_SIZE : The number of elements processed in X dimension 36 …step_x in1_stride_x * number of elements along X processed per workitem(in … 38 …step_y in1_stride_y * number of elements along Y processed per workitem(in … 42 …step_x in2_stride_x * number of elements along X processed per workitem(in … 44 …step_y in2_stride_y * number of elements along Y processed per workitem(in … 48 …step_x out_stride_x * number of elements along X processed per workitem(in … 50 …step_y out_stride_y * number of elements along Y processed per workitem(in … 81 * -# -DVEC_SIZE : The number of elements processed in X dimension 86 …step_x in1_stride_x * number of elements along X processed per workitem(in … 88 …step_y in1_stride_y * number of elements along Y processed per workitem(in … [all …]
|
D | select.cl | 35 …* @param[in] c_step_x c_stride_x * number of elements along X processed … 37 …* @param[in] c_step_y c_stride_y * number of elements along Y processed … 39 …* @param[in] c_step_z c_stride_z * number of elements along Z processed … 43 …* @param[in] x_step_x x_stride_x * number of elements along X processed … 45 …* @param[in] x_step_y x_stride_y * number of elements along Y processed … 47 …* @param[in] x_step_z x_stride_z * number of elements along Z processed … 51 …* @param[in] y_step_x y_stride_x * number of elements along X processed … 53 …* @param[in] y_step_y y_stride_y * number of elements along Y processed … 55 …* @param[in] y_step_z y_stride_z * number of elements along Z processed … 59 …step_x out_stride_x * number of elements along X processed per workitem(in … [all …]
|
D | concatenate.cl | 60 …step_x src_stride_x * number of elements along X processed per workitem(in … 62 …step_y src_stride_y * number of elements along Y processed per workitem(in … 64 …step_z src_stride_z * number of elements along Z processed per workitem(in … 66 …step_w src_stride_z * number of elements along Z processed per workitem(in … 70 …step_x src_stride_x * number of elements along X processed per workitem(in … 72 …step_y src_stride_y * number of elements along Y processed per workitem(in … 74 …step_z src_stride_z * number of elements along Z processed per workitem(in … 76 …step_w src_stride_z * number of elements along Z processed per workitem(in … 80 …tep_x dst_stride_x * number of elements along X processed per workitem(in … 82 …tep_y dst_stride_y * number of elements along Y processed per workitem(in … [all …]
|
D | fft.cl | 230 …p_x input_stride_x * number of elements along X processed per workitem(in … 232 …p_y input_stride_y * number of elements along Y processed per workitem(in … 234 …p_z input_stride_z * number of elements along Z processed per workitem(in … 238 … (Optional) output_stride_x * number of elements along X processed per workitem(in … 240 … (Optional) output_stride_y * number of elements along Y processed per workitem(in … 242 … (Optional) output_stride_z * number of elements along Z processed per workitem(in … 278 …p_x input_stride_x * number of elements along X processed per workitem(in … 280 …p_y input_stride_y * number of elements along Y processed per workitem(in … 282 …p_z input_stride_z * number of elements along Z processed per workitem(in … 286 … (Optional) output_stride_x * number of elements along X processed per workitem(in … [all …]
|
D | l2_normalize.cl | 35 …p_x input_stride_x * number of elements along X processed per workitem(in … 37 …p_y input_stride_y * number of elements along X processed per workitem(in … 41 …p_x sum_stride_x * number of elements along X processed per workitem(in … 43 …p_y sum_stride_y * number of elements along Y processed per workitem(in … 47 …p_x output_stride_x * number of elements along X processed per workitem(in … 49 …p_y output_stride_y * number of elements along Y processed per workitem(in … 87 …p_x input_stride_x * number of elements along Y processed per workitem(in … 89 …p_y input_stride_y * number of elements along Y processed per workitem(in … 93 …p_x sum_stride_x * number of elements along X processed per workitem(in … 95 …p_y sum_stride_y * number of elements along Y processed per workitem(in … [all …]
|
D | comparisons.cl | 48 …step_x in1_stride_x * number of elements along X processed per workitem(in … 50 …step_y in1_stride_y * number of elements along Y processed per workitem(in … 52 …step_z in1_stride_z * number of elements along Z processed per workitem(in … 56 …step_x in2_stride_x * number of elements along X processed per workitem(in … 58 …step_y in2_stride_y * number of elements along Y processed per workitem(in … 60 …step_z in2_stride_z * number of elements along Z processed per workitem(in … 64 …step_x out_stride_x * number of elements along X processed per workitem(in … 66 …step_y out_stride_y * number of elements along Y processed per workitem(in … 68 …step_z out_stride_z * number of elements along Z processed per workitem(in … 104 …step_x in1_stride_x * number of elements along X processed per workitem(in … [all …]
|
D | pixelwise_mul_float.cl | 53 …step_x in1_stride_x * number of elements along X processed per workitem(in … 55 …step_y in1_stride_y * number of elements along Y processed per workitem(in … 57 …step_z in1_stride_z * number of elements along Y processed per workitem(in … 61 …step_x in2_stride_x * number of elements along X processed per workitem(in … 63 …step_y in2_stride_y * number of elements along Y processed per workitem(in … 65 …step_z in2_stride_z * number of elements along Y processed per workitem(in … 69 …step_x out_stride_x * number of elements along X processed per workitem(in … 71 …step_y out_stride_y * number of elements along Y processed per workitem(in … 73 …step_z out_stride_z * number of elements along Y processed per workitem(in … 128 …step_x in1_stride_x * number of elements along X processed per workitem(in … [all …]
|
D | softmax_layer_quantized.cl | 40 …is threshold difference between maximum value of input data and current processed value, it define… 45 …step_x src_stride_x * number of elements along X processed per workitem(in … 47 …step_y src_stride_y * number of elements along Y processed per workitem(in … 49 …step_z src_stride_z * number of elements along Z processed per workitem(in … 53 …step_x sum_stride_x * number of elements along X processed per workitem(in … 55 …step_y sum_stride_y * number of elements along Y processed per workitem(in … 57 …step_z sum_stride_z * number of elements along Z processed per workitem(in … 61 …step_x dst_stride_x * number of elements along X processed per workitem(in … 63 …step_y dst_stride_y * number of elements along Y processed per workitem(in … 65 …step_z dst_stride_z * number of elements along Z processed per workitem(in … [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/ |
D | AEADCipher.java | 12 …* processed during the call to {@link #doFinal(byte[], int)}), or in a streaming mode (where outpu… 46 * @param in the byte to be processed. 55 * @param inOff the offset into the in array where the data to be processed starts. 56 * @param len the number of bytes to be processed. 63 * @param in the byte to be processed. 64 * @param out the output buffer the processed byte goes into. 65 * @param outOff the offset into the output byte array the processed data starts at. 76 * @param inOff the offset into the in array where the data to be processed starts. 77 * @param len the number of bytes to be processed. 78 * @param out the output buffer the processed bytes go into. [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | AEADCipher.java | 11 …* processed during the call to {@link #doFinal(byte[], int)}), or in a streaming mode (where outpu… 44 * @param in the byte to be processed. 53 * @param inOff the offset into the in array where the data to be processed starts. 54 * @param len the number of bytes to be processed. 61 * @param in the byte to be processed. 62 * @param out the output buffer the processed byte goes into. 63 * @param outOff the offset into the output byte array the processed data starts at. 74 * @param inOff the offset into the in array where the data to be processed starts. 75 * @param len the number of bytes to be processed. 76 * @param out the output buffer the processed bytes go into. [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/modes/ |
D | AEADCipher.java | 12 …* processed during the call to {@link #doFinal(byte[], int)}), or in a streaming mode (where outpu… 46 * @param in the byte to be processed. 55 * @param inOff the offset into the in array where the data to be processed starts. 56 * @param len the number of bytes to be processed. 63 * @param in the byte to be processed. 64 * @param out the output buffer the processed byte goes into. 65 * @param outOff the offset into the output byte array the processed data starts at. 76 * @param inOff the offset into the in array where the data to be processed starts. 77 * @param len the number of bytes to be processed. 78 * @param out the output buffer the processed bytes go into. [all …]
|
/external/rust/android-crates-io/crates/googletest/src/matchers/ |
D | matches_pattern.rs | 381 @fields ($($processed:tt)*), 388 $($processed)*, 394 @fields ($($processed:tt)*), 401 $($processed)*, 407 @fields ($($processed:tt)*), 414 $($processed)*, 420 @fields ($($processed:tt)*), 427 $($processed)*, 433 @fields ($($processed:tt)*), 439 $($processed)*, [all …]
|
/external/lzma/CPP/7zip/Compress/ |
D | CopyCoder.cpp | 62 UInt32 processed = 0; in Z7_COM7F_IMF() local 63 readRes = inStream->Read(_buf + pos, curSize, &processed); in Z7_COM7F_IMF() 64 if (processed > curSize) in Z7_COM7F_IMF() 66 pos += processed; in Z7_COM7F_IMF() 67 if (readRes != S_OK || processed == 0) in Z7_COM7F_IMF() 83 UInt32 processed = 0; in Z7_COM7F_IMF() local 84 const HRESULT res = outStream->Write(_buf + pos, curSize, &processed); in Z7_COM7F_IMF() 85 if (processed > curSize) in Z7_COM7F_IMF() 87 pos += processed; in Z7_COM7F_IMF() 88 TotalSize += processed; in Z7_COM7F_IMF() [all …]
|
D | BranchMisc.cpp | 23 const UInt32 processed = (UInt32)(size_t)(BraFunc(data, size, _pc) - data); in Z7_COM7F_IMF2() local 24 _pc += processed; in Z7_COM7F_IMF2() 25 return processed; in Z7_COM7F_IMF2() 39 const UInt32 processed = (UInt32)(size_t)(BraFunc(data, size, _pc) - data); in Z7_COM7F_IMF2() local 40 _pc += processed; in Z7_COM7F_IMF2() 41 return processed; in Z7_COM7F_IMF2() 86 const UInt32 processed = (UInt32)(size_t)(BraFunc(data, size, _pc) - data); in Z7_COM7F_IMF2() local 87 _pc += processed; in Z7_COM7F_IMF2() 88 return processed; in Z7_COM7F_IMF2()
|
/external/pytorch/scripts/ |
D | proto.ps1 | 5 [string]$processed, variable 9 …$unprocessed | % {$_ -Replace "caffe2/proto/caffe2.proto", "caffe2.proto"} | Set-Content $processed 10 Add-Content -Path $processed -Value "option optimize_for = LITE_RUNTIME;`n" -NoNewline variable 11 $dir = (Get-Item $processed).DirectoryName 16 $processed = (Get-Item $processed).Name variable 17 $cmd = "$protoc -I${dir} --cpp_out=$out $processed"
|
/external/armnn/samples/ObjectDetection/test/delegate/ |
D | ArmnnDelegateNetworkExecutorTest.cpp | 37 cv::Mat processed; variable 56 ResizeWithPad(inputFrame, processed, cache, common::Size(width,height)); 57 CHECK(executor->Run(processed.data, processed.total() * processed.elemSize(), results) == true); 85 cv::Mat processed; variable 106 ResizeWithPad(inputFrame, processed, cache, common::Size(width,height)); 108 processed.convertTo(processed, CV_32FC3); 110 CHECK(executor->Run(processed.data, processed.total() * processed.elemSize(), results) == true);
|
/external/ComputeLibrary/src/core/CL/cl_kernels/nhwc/ |
D | winograd_output_transform.cl | 39 …* @note The number of output elements processed along the X direction must be passed at compile ti… 43 …step_x src_stride_x * number of elements along X processed per workitem(in … 45 …step_y src_stride_y * number of elements along Y processed per workitem(in … 47 …step_z src_stride_z * number of elements along Z processed per workitem(in … 49 …step_w src_stride_w * number of elements along W processed per workitem(in … 53 …step_x dst_stride_x * number of elements along X processed per workitem(in … 55 …step_y dst_stride_y * number of elements along Y processed per workitem(in … 57 …step_z dst_stride_z * number of elements along Z processed per workitem(in … 59 …step_w dst_stride_w * number of elements along W processed per workitem(in … 215 …* @note The number of output elements processed along the X direction must be passed at compile ti… [all …]
|
D | batch_to_space.cl | 35 …p_x input_stride_x * number of elements along X processed per workitem(in … 37 …p_y input_stride_y * number of elements along Y processed per workitem(in … 39 …p_z input_stride_z * number of elements along Z processed per workitem(in … 44 …p_x block_shape_stride_x * number of elements along X processed per workitem(in … 46 …p_y block_shape_stride_y * number of elements along Y processed per workitem(in … 50 …p_x output_stride_x * number of elements along X processed per workitem(in … 52 …p_y output_stride_y * number of elements along Y processed per workitem(in … 54 …p_z output_stride_z * number of elements along Z processed per workitem(in … 93 …p_x input_stride_x * number of elements along X processed per workitem(in … 95 …p_y input_stride_y * number of elements along Y processed per workitem(in … [all …]
|
/external/ComputeLibrary/src/core/CL/cl_kernels/nchw/ |
D | batch_to_space.cl | 35 …p_x input_stride_x * number of elements along X processed per workitem(in … 37 …p_y input_stride_y * number of elements along Y processed per workitem(in … 39 …p_z input_stride_z * number of elements along Z processed per workitem(in … 44 …p_x block_shape_stride_x * number of elements along X processed per workitem(in … 46 …p_y block_shape_stride_y * number of elements along Y processed per workitem(in … 50 …p_x output_stride_x * number of elements along X processed per workitem(in … 52 …p_y output_stride_y * number of elements along Y processed per workitem(in … 54 …p_z output_stride_z * number of elements along Z processed per workitem(in … 93 …p_x input_stride_x * number of elements along X processed per workitem(in … 95 …p_y input_stride_y * number of elements along Y processed per workitem(in … [all …]
|