HomeSort by relevance Sort by last modified time
    Searched refs:stride1 (Results 1 - 25 of 43) sorted by null

1 2

  /frameworks/ml/nn/runtime/test/specs/V1_0/
conv_quant8_2.mod.py 23 stride1 = Int32Scalar("stride1", 1) variable
29 stride1, act_none).To(output)
  /frameworks/ml/nn/runtime/test/generated/models/
conv_quant8_2.model.cpp 14 auto stride1 = model->addOperand(&type3); local
27 model->setOperandValue(stride1, stride1_init, sizeof(int32_t) * 1);
30 model->addOperation(ANEURALNETWORKS_CONV_2D, {op1, op2, op3, pad_valid, stride3, stride1, act_none}, {op4});
  /external/mesa3d/src/egl/wayland/wayland-drm/
wayland-drm.c 77 int32_t offset1, int32_t stride1,
96 buffer->stride[1] = stride1;
149 int32_t offset1, int32_t stride1,
169 offset0, stride0, offset1, stride1, offset2, stride2);
178 int32_t offset1, int32_t stride1,
182 offset0, stride0, offset1, stride1, offset2, stride2);
  /external/webp/src/dsp/
ssim.c 63 static double SSIMGetClipped_C(const uint8_t* src1, int stride1,
74 src1 += ymin * stride1;
76 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) {
93 static double SSIMGet_C(const uint8_t* src1, int stride1,
97 for (y = 0; y <= 2 * VP8_SSIM_KERNEL; ++y, src1 += stride1, src2 += stride2) {
ssim_sse2.c 121 src1 += stride1; \
125 static double SSIMGet_SSE2(const uint8_t* src1, int stride1,
dsp.h 306 typedef double (*VP8SSIMGetClippedFunc)(const uint8_t* src1, int stride1,
314 typedef double (*VP8SSIMGetFunc)(const uint8_t* src1, int stride1,
  /external/tensorflow/tensorflow/core/lib/jpeg/
jpeg_mem_unittest.cc 159 const int stride1 = (flags.stride != 0) ? flags.stride : w1 * c;
162 const uint8* p1 = &imgdata1[(i + crop_y) * stride1 + crop_x * c];
290 const int stride1 = 3 * in_w; local
291 const std::unique_ptr<uint8[]> refdata1(new uint8[stride1 * in_h]);
294 const int offset = i * stride1 + 3 * j;
305 memcpy(&refdata2[i * stride2], &refdata1[i * stride1], 3 * in_w);
355 imgdata1.get(), refdata1.get(), in_w, in_h, stride1, stride1);
374 imgdata1.get(), imgdata2.get(), in_w, in_h, stride1, flags.stride);
395 imgdata1.get(), refdata1.get(), in_w, in_h, stride1, stride1)
    [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-lib2d-interface/inc/
mm_lib2d.h 103 * @stride1: stride in bytes
118 int32_t stride1; member in struct:mm_lib2d_yuv_buffer_t
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-lib2d-interface/inc/
mm_lib2d.h 102 * @stride1: stride in bytes
117 int32_t stride1; member in struct:mm_lib2d_yuv_buffer_t
  /hardware/intel/common/libva/va/wayland/
wayland-drm-client-protocol.h 194 wl_drm_create_planar_buffer(struct wl_drm *wl_drm, uint32_t name, int32_t width, int32_t height, uint32_t format, int32_t offset0, int32_t stride0, int32_t offset1, int32_t stride1, int32_t offset2, int32_t stride2)
204 WL_DRM_CREATE_PLANAR_BUFFER, id, name, width, height, format, offset0, stride0, offset1, stride1, offset2, stride2);
  /prebuilts/go/darwin-x86/src/image/jpeg/
reader_test.go 141 func check(bounds image.Rectangle, pix0, pix1 []byte, stride0, stride1 int) error {
145 if stride1 <= 0 || stride1%8 != 0 {
146 return fmt.Errorf("bad stride %d", stride1)
149 for y := 0; y < len(pix0)/stride0 && y < len(pix1)/stride1; y += 8 {
150 for x := 0; x < stride0 && x < stride1; x += 8 {
164 index1 := (y+j)*stride1 + (x + i)
168 pixString(pix1, stride1, x, y),
  /prebuilts/go/linux-x86/src/image/jpeg/
reader_test.go 141 func check(bounds image.Rectangle, pix0, pix1 []byte, stride0, stride1 int) error {
145 if stride1 <= 0 || stride1%8 != 0 {
146 return fmt.Errorf("bad stride %d", stride1)
149 for y := 0; y < len(pix0)/stride0 && y < len(pix1)/stride1; y += 8 {
150 for x := 0; x < stride0 && x < stride1; x += 8 {
164 index1 := (y+j)*stride1 + (x + i)
168 pixString(pix1, stride1, x, y),
  /external/webp/src/enc/
picture_psnr_enc.c 197 const size_t stride1 = 4 * (size_t)p1.argb_stride; local
199 (const uint8_t*)p1.argb + c, stride1,
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 164 ; int stride1, 1
181 mov rcx, arg(1) ; stride1
197 add rax, rcx ; src1 + stride1
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 165 ; int stride1, 1
182 mov rcx, arg(1) ; stride1
198 add rax, rcx ; src1 + stride1
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_sample.c 1162 LLVMValueRef indexes[2], stride, stride1; local
1171 LLVMValueRef stride1; local
1186 LLVMValueRef stride1; local
    [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-lib2d-interface/src/
mm_lib2d.c 244 p_frame->frame[0].plane[1].stride = yuv_buffer->stride1;
245 p_frame->frame[0].plane[1].length = (yuv_buffer->stride1 *
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-lib2d-interface/src/
mm_lib2d.c 246 p_frame->frame[0].plane[1].stride = yuv_buffer->stride1;
247 p_frame->frame[0].plane[1].length = (yuv_buffer->stride1 *
  /hardware/qcom/display/msm8084/libcopybit/
c2d2.h 330 int32 stride1; /* stride for UV or VU plane for planar interleaved */ member in struct:__anon49594
    [all...]
  /hardware/qcom/display/msm8226/libcopybit/
c2d2.h 330 int32 stride1; /* stride for UV or VU plane for planar interleaved */ member in struct:__anon49672
    [all...]
  /hardware/qcom/display/msm8909/libcopybit/
c2d2.h 331 int32 stride1; /* stride for UV or VU plane for planar interleaved */ member in struct:__anon49750
    [all...]
  /hardware/qcom/display/msm8909w_3100/libcopybit/
c2d2.h 331 int32 stride1; /* stride for UV or VU plane for planar interleaved */ member in struct:__anon49826
    [all...]
  /hardware/qcom/display/msm8960/libcopybit/
c2d2.h 330 int32 stride1; /* stride for UV or VU plane for planar interleaved */ member in struct:__anon49908
    [all...]
  /hardware/qcom/display/msm8994/libcopybit/
c2d2.h 330 int32 stride1; /* stride for UV or VU plane for planar interleaved */ member in struct:__anon49974
    [all...]
  /hardware/qcom/display/msm8996/libcopybit/
c2d2.h 331 int32 stride1; /* stride for UV or VU plane for planar interleaved */ member in struct:__anon50047
    [all...]

Completed in 977 milliseconds

1 2