/frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/ |
UT_multi_input.java | 32 private final int Xdim = 100; 42 floatBuilder.setX(Xdim); 56 float a[] = new float[Xdim]; 57 float b[] = new float[Xdim]; 62 for (int i = 0; i < Xdim; i++) { 72 float out0[] = new float[Xdim]; 73 float ain0[] = new float[Xdim]; 74 float ain1[] = new float[Xdim]; 83 for (int i = 0; i < Xdim; i++) {
|
/prebuilts/go/darwin-x86/misc/cgo/life/ |
c-life.c | 35 DoStep(int xdim, int ydim, int xstart, int xend, int ystart, int yend, int *a, int *n) 44 if(x+i >= 0 && x+i < xdim && 47 c += a[(x+i)*xdim + (y+j)] != 0; 50 if(c == 3 || (c == 2 && a[x*xdim + y] != 0)) 51 n[x*xdim + y] = 1; 53 n[x*xdim + y] = 0;
|
life.go | 27 func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) { 30 C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
|
/prebuilts/go/linux-x86/misc/cgo/life/ |
c-life.c | 35 DoStep(int xdim, int ydim, int xstart, int xend, int ystart, int yend, int *a, int *n) 44 if(x+i >= 0 && x+i < xdim && 47 c += a[(x+i)*xdim + (y+j)] != 0; 50 if(c == 3 || (c == 2 && a[x*xdim + y] != 0)) 51 n[x*xdim + y] = 1; 53 n[x*xdim + y] = 0;
|
life.go | 27 func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) { 30 C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
UT_foreach_multi.java | 44 int Xdim = 5; 45 s.set_dimX(Xdim); 46 type32Builder.setX(Xdim); 47 type16Builder.setX(Xdim); 82 ScriptField_RetStruct StructType = new ScriptField_RetStruct(RS, Xdim);
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
PVRTDecompress.h | 16 @param[in] XDim X dimension of the texture 23 const int XDim,
|
PVRTDecompress.cpp | 701 @Input XDim X dimension of the texture 709 const int XDim, 717 int XTrueDim = PVRT_MAX(XDim,((Do2bitMode==1)?16:8)); 721 if(XTrueDim!=XDim || YTrueDim!=YDim) 730 if(XTrueDim!=XDim || YTrueDim!=YDim) 733 for (int x=0; x<XDim; ++x) 737 ((Pixel32*)pResultImage)[x+y*XDim]=pDecompressedData[x+y*XTrueDim]; [all...] |
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
UT_foreach_multi.java | 46 int Xdim = 5; 47 s.set_dimX(Xdim); 48 type32Builder.setX(Xdim); 49 type16Builder.setX(Xdim); 84 ScriptField_RetStruct StructType = new ScriptField_RetStruct(RS, Xdim);
|
/external/tensorflow/tensorflow/core/util/ |
cuda_launch_config.h | 202 inline Cuda2DLaunchConfig GetCuda2DLaunchConfig(int xdim, int ydim, 206 if (xdim <= 0 || ydim <= 0) { 211 int block_cols = std::min(xdim, kThreadsPerBlock); 220 config.virtual_thread_count = dim3(xdim, ydim, 1); 223 int grid_x = std::min(DivUp(xdim, block_cols), max_blocks); 237 int xdim, int ydim, int zdim, const Eigen::GpuDevice& d, DeviceFunc func, 241 if (xdim <= 0 || ydim <= 0 || zdim <= 0) { 263 int threadsx = std::min({xdim, thread_per_block, xthreadlimit}); 270 int blocksx = std::min({block_count, DivUp(xdim, threadsx), xgridlimit}); 276 config.virtual_thread_count = dim3(xdim, ydim, zdim) [all...] |
/frameworks/rs/tests/cpp_api/cppbasic/ |
compute.cpp | 75 static const uint32_t xDim = 7; 79 tb.setX(xDim); 89 kern1_in->copy2DRangeFrom(0, 0, xDim, yDim, buf);
|
/frameworks/rs/tests/cpp_api/cppbasic-shared/ |
compute.cpp | 75 static const uint32_t xDim = 7; 79 tb.setX(xDim); 89 kern1_in->copy2DRangeFrom(0, 0, xDim, yDim, buf);
|
/external/fio/ |
graph.c | 81 unsigned int xdim, ydim; member in struct:graph 105 void graph_set_size(struct graph *g, unsigned int xdim, unsigned int ydim) 107 g->xdim = xdim; 117 struct graph *graph_new(unsigned int xdim, unsigned int ydim, const char *font) 123 graph_set_size(g, xdim, ydim); 278 *x1 = 0.10 * g->xdim; 279 *x2 = 0.95 * g->xdim; 307 draw_centered_text(cr, g->font, g->xdim / 2, g->ydim / 20, 20.0, g->title); 308 draw_centered_text(cr, g->font, g->xdim / 2, g->ydim * 0.97, 14.0, g->xtitle) [all...] |
graph.h | 11 struct graph *graph_new(unsigned int xdim, unsigned int ydim, const char *font); 13 void graph_set_size(struct graph *g, unsigned int xdim, unsigned int ydim);
|
gclient.c | 878 double xdim, double ydim) 883 g = graph_new(xdim, ydim, gfio_graph_font); 1070 double xdim, double ydim) 1075 g = graph_new(xdim, ydim, gfio_graph_font); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/ |
Attrs.inc | [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/ |
Attrs.inc | [all...] |