/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | portable_tensor_utils.h | 32 bool PortableIsZeroVector(const float* vector, int v_size); 63 const float* vector2, int v_size, 70 int v_size, float* result); 74 int v_size); 78 const float* vector2, int v_size, 83 void PortableVectorBatchVectorCwiseProduct(const float* vector, int v_size, 91 int v_size, 97 void PortableVectorBatchVectorAssign(const float* vector, int v_size, 101 void PortableVectorBatchVectorAdd(const float* vector, int v_size, int n_batch, 105 void PortableApplySigmoidToVector(const float* vector, int v_size, [all …]
|
D | portable_tensor_utils.cc | 38 bool PortableIsZeroVector(const float* vector, int v_size) { in PortableIsZeroVector() argument 39 for (int i = 0; i < v_size; ++i) { in PortableIsZeroVector() 181 const float* vector2, int v_size, in PortableVectorVectorCwiseProduct() argument 183 for (int v = 0; v < v_size; v++) { in PortableVectorVectorCwiseProduct() 189 int v_size) { in PortableVectorVectorDotProduct() argument 191 for (int v = 0; v < v_size; v++) { in PortableVectorVectorDotProduct() 198 const float* vector2, int v_size, in PortableBatchVectorBatchVectorDotProduct() argument 206 PortableVectorVectorDotProduct(vector1_ptr, vector2_ptr, v_size); in PortableBatchVectorBatchVectorDotProduct() 207 vector1_ptr += v_size; in PortableBatchVectorBatchVectorDotProduct() 208 vector2_ptr += v_size; in PortableBatchVectorBatchVectorDotProduct() [all …]
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | neon_tensor_utils.h | 62 int v_size, float* result) { in VectorVectorCwiseProduct() argument 63 NEON_OR_PORTABLE(VectorVectorCwiseProduct, vector1, vector2, v_size, result); in VectorVectorCwiseProduct() 67 const float* vector2, int v_size, in VectorVectorCwiseProductAccumulate() argument 69 NEON_OR_PORTABLE(VectorVectorCwiseProductAccumulate, vector1, vector2, v_size, in VectorVectorCwiseProductAccumulate() 73 void VectorBatchVectorCwiseProduct(const float* vector, int v_size, in VectorBatchVectorCwiseProduct() argument 76 NEON_OR_PORTABLE(VectorBatchVectorCwiseProduct, vector, v_size, batch_vector, in VectorBatchVectorCwiseProduct() 80 void VectorBatchVectorCwiseProductAccumulate(const float* vector, int v_size, in VectorBatchVectorCwiseProductAccumulate() argument 83 NEON_OR_PORTABLE(VectorBatchVectorCwiseProductAccumulate, vector, v_size, in VectorBatchVectorCwiseProductAccumulate() 88 int v_size) { in VectorVectorDotProduct() argument 89 return NEON_OR_PORTABLE(VectorVectorDotProduct, vector1, vector2, v_size); in VectorVectorDotProduct() [all …]
|
D | tensor_utils_impl.h | 78 const float* vector2, int v_size, 81 int v_size, float* result); 87 int v_size, float* result); 89 const float* vector2, int v_size, 94 int v_size); 96 int v_size); 100 const float* vector2, int v_size, 104 const float* vector2, int v_size, 109 void PortableVectorBatchVectorCwiseProduct(const float* vector, int v_size, 112 void NeonVectorBatchVectorCwiseProduct(const float* vector, int v_size, [all …]
|
D | neon_tensor_utils.cc | 632 int v_size, float* result) { in NeonVectorVectorCwiseProduct() argument 637 v_size - (v_size & (kFloatWeightsPerNeonLane - 1)); in NeonVectorVectorCwiseProduct() 647 for (int v = postamble_start; v < v_size; v++) { in NeonVectorVectorCwiseProduct() 653 const float* vector2, int v_size, in NeonVectorVectorCwiseProductAccumulate() argument 659 v_size - (v_size & (kFloatWeightsPerNeonLane - 1)); in NeonVectorVectorCwiseProductAccumulate() 670 for (int v = postamble_start; v < v_size; v++) { in NeonVectorVectorCwiseProductAccumulate() 675 void NeonVectorBatchVectorCwiseProduct(const float* vector, int v_size, in NeonVectorBatchVectorCwiseProduct() argument 682 v_size - (v_size & (kFloatWeightsPerNeonLane - 1)); in NeonVectorBatchVectorCwiseProduct() 695 for (int v = postamble_start; v < v_size; v++) { in NeonVectorBatchVectorCwiseProduct() 699 result += v_size; in NeonVectorBatchVectorCwiseProduct() [all …]
|
/external/tensorflow/tensorflow/lite/kernels/internal/ |
D | tensor_utils.h | 31 bool IsZeroVector(const float* vector, int v_size); 104 int v_size, float* result); 109 const float* vector2, int v_size, 114 int v_size); 132 const float* vector2, int v_size, 137 void VectorBatchVectorCwiseProduct(const float* vector, int v_size, 144 void VectorBatchVectorCwiseProductAccumulate(const float* vector, int v_size, 149 void VectorBatchVectorAdd(const float* vector, int v_size, int n_batch, 153 void VectorBatchVectorAssign(const float* vector, int v_size, int n_batch, 157 void ApplySigmoidToVector(const float* vector, int v_size, float* result); [all …]
|
/external/webp/include/webp/ |
D | decode.h | 135 uint8_t* v, size_t v_size, int v_stride); 198 size_t u_size, v_size; // chroma planes size member 316 uint8_t* v, size_t v_size, int v_stride, 324 uint8_t* v, size_t v_size, int v_stride);
|
/external/webp/src/webp/ |
D | decode.h | 135 uint8_t* v, size_t v_size, int v_stride); 198 size_t u_size, v_size; // chroma planes size member 316 uint8_t* v, size_t v_size, int v_stride, 324 uint8_t* v, size_t v_size, int v_stride);
|
/external/webp/src/dec/ |
D | buffer_dec.c | 58 const uint64_t v_size = MIN_BUFFER_SIZE(uv_width, uv_height, v_stride); in CheckDecBuffer() local 62 ok &= (v_size <= buf->v_size); in CheckDecBuffer() 137 buf->v_size = (size_t)uv_size; in AllocateBuffer()
|
D | idec_dec.c | 713 uint8_t* v, size_t v_size, int v_stride, in WebPINewYUVA() argument 720 luma_size = u_size = v_size = a_size = 0; in WebPINewYUVA() 726 if (luma_size == 0 || u_size == 0 || v_size == 0) return NULL; in WebPINewYUVA() 747 idec->output_.u.YUVA.v_size = v_size; in WebPINewYUVA() 756 uint8_t* v, size_t v_size, int v_stride) { in WebPINewYUV() argument 759 v, v_size, v_stride, in WebPINewYUV()
|
D | webp_dec.c | 578 uint8_t* v, size_t v_size, int v_stride) { in WebPDecodeYUVInto() argument 594 output.u.YUVA.v_size = v_size; in WebPDecodeYUVInto()
|
/external/drm_hwcomposer/ |
D | platformhisi.cpp | 172 int v_size = vu_stride * (adjusted_height / 2); in ImportBuffer() local 181 bo->offsets[2] = y_size + v_size; in ImportBuffer()
|
/external/webrtc/talk/media/base/ |
D | videoframe.cc | 88 const size_t v_size = GetVPitch() * GetChromaHeight(); in CopyToBuffer() local 89 const size_t needed = y_size + u_size + v_size; in CopyToBuffer()
|
/external/webrtc/talk/session/media/ |
D | planarfunctions_unittest.cc | 143 int u_size, v_size; in CreateFakeYuvTestingImage() local 148 v_size = u_size; in CreateFakeYuvTestingImage() 153 v_size = u_size; in CreateFakeYuvTestingImage() 157 v_size = u_size = y_size; in CreateFakeYuvTestingImage() 165 uint8_t* image_pointer = new uint8_t[y_size + u_size + v_size + kAlignment]; in CreateFakeYuvTestingImage()
|
/external/brotli/c/enc/ |
D | brotli_bit_stream.c | 593 static size_t IndexOf(const uint8_t* v, size_t v_size, uint8_t value) { in IndexOf() argument 595 for (; i < v_size; ++i) { in IndexOf() 611 const size_t v_size, in MoveToFrontTransform() argument 616 if (v_size == 0) { in MoveToFrontTransform() 620 for (i = 1; i < v_size; ++i) { in MoveToFrontTransform() 629 for (i = 0; i < v_size; ++i) { in MoveToFrontTransform()
|
/external/kernel-headers/original/uapi/linux/ |
D | nilfs2_api.h | 165 __u16 v_size; /* size of members */ member
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | sortvisu.py | 520 self.v_size = MyIntVar(self.master, self) 521 self.v_size.set(size) 527 (self.botleftframe, self.v_size) + tuple(sizes))
|
/external/python/cpython3/Tools/demo/ |
D | sortvisu.py | 522 self.v_size = MyIntVar(self.master, self) 523 self.v_size.set(size) 528 self.m_size = OptionMenu(self.botleftframe, self.v_size, *sizes)
|