Home
last modified time | relevance | path

Searched refs:first_x (Results 1 – 2 of 2) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorConvolution.h579 const int first_x = blockIdx.x * maxX;
580 const int last_x = (first_x + maxX < numX ? first_x + maxX : numX) - 1;
581 const int num_x_input = last_x - first_x + GetKernelSize<StaticKernelSize>()(kernelSize);
582 const int num_x_output = last_x - first_x + 1;
593 …t tensor_index = plane_input_offset + indexMapper.mapCudaInputKernelToTensorInputOffset(i+first_x);
610 …ensor_index = plane_output_offset + indexMapper.mapCudaOutputKernelToTensorOutputOffset(i+first_x);
628 const int first_x = blockIdx.x * maxX;
629 const int last_x = (first_x + maxX < numX ? first_x + maxX : numX) - 1;
630 const int num_x_input = last_x - first_x + GetKernelSize<StaticKernelSizeX>()(kernelSizeX);
631 const int num_x_output = last_x - first_x + 1;
[all …]
/external/mesa3d/src/imgui/
Dimstb_truetype.h1869 float first_x, first_y; member
1906 if (ctx->first_x != ctx->x || ctx->first_y != ctx->y) in stbtt__csctx_close_shape()
1907 stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->first_x, (int)ctx->first_y, 0, 0, 0, 0); in stbtt__csctx_close_shape()
1913 ctx->first_x = ctx->x = ctx->x + dx; in stbtt__csctx_rmove_to()