/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_flush.c | 50 uint64 *offsets=NULL, *sizes=NULL; in TIFFFlush() local 55 && TIFFGetField( tif, TIFFTAG_TILEBYTECOUNTS, &sizes ) in TIFFFlush() 59 tif->tif_dir.td_nstrips, sizes ) ) in TIFFFlush() 69 && TIFFGetField( tif, TIFFTAG_STRIPBYTECOUNTS, &sizes ) in TIFFFlush() 73 tif->tif_dir.td_nstrips, sizes ) ) in TIFFFlush()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ |
A D | README.md | 13 ruy is designed to achieve high performance not just on very large sizes, as 14 is the focus of many established libraries, but on whatever are the actual sizes 16 This often means quite small sizes, e.g. 100x100 or even 50x50, and all sorts of
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | benchmark.cc | 119 std::vector<int> sizes; in Benchmark() local 122 sizes = ParseCommaSeparatedInts(benchmark_cubic_list_env); in Benchmark() 129 sizes.push_back(i); in Benchmark() 131 sizes.push_back(i * 3 / 2); in Benchmark() 135 for (int i : sizes) { in Benchmark()
|
A D | test_fast.cc | 32 const std::vector<int> sizes{ in TEST() local 59 for (int size : sizes) { in TEST()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/ |
A D | types.h | 144 int sizes[N]; member 334 result.sizes[i] = new_dim; in ToRuntimeDims() 344 {dims.sizes[3], dims.sizes[2], dims.sizes[1], dims.sizes[0]}); in DimsToShape() 428 TFLITE_DCHECK(i0 >= 0 && i0 < dims.sizes[0]); in Offset() 429 TFLITE_DCHECK(i1 >= 0 && i1 < dims.sizes[1]); in Offset() 430 TFLITE_DCHECK(i2 >= 0 && i2 < dims.sizes[2]); in Offset() 431 TFLITE_DCHECK(i3 >= 0 && i3 < dims.sizes[3]); in Offset() 451 return array.sizes[index]; in ArraySize() 488 flat_size *= dims.sizes[i]; in FlatSize() 613 flat_size *= (i == skip_dim) ? 1 : dims.sizes[i]; in FlatSizeSkipDim() [all …]
|
A D | common.h | 782 desc0_out->extents[i] = input0_dims.sizes[i]; in NdArrayDescsForElementwiseBroadcast() 784 desc1_out->extents[i] = input1_dims.sizes[i]; in NdArrayDescsForElementwiseBroadcast()
|
/AliOS-Things-master/components/freetype/src/cache/ |
A D | ftcmanag.c | 199 FTC_MRULIST_LOOKUP_CMP( &manager->sizes, scaler, ftc_size_node_compare, in FTC_Manager_LookupSize() 203 error = FTC_MruList_Lookup( &manager->sizes, scaler, &mrunode ); in FTC_Manager_LookupSize() 270 FTC_MruList_RemoveSelection( &manager->sizes, in ftc_face_node_done() 396 FTC_MruList_Init( &manager->sizes, in FTC_Manager_New() 439 FTC_MruList_Done( &manager->sizes ); in FTC_Manager_Done() 456 FTC_MruList_Reset( &manager->sizes ); in FTC_Manager_Reset()
|
A D | ftcmanag.h | 105 FTC_MruListRec sizes; member
|
/AliOS-Things-master/components/SDL2/docs/ |
A D | README-ios.md | 63 Notes -- Retina / High-DPI and window sizes 66 Window and display mode sizes in SDL are in "screen coordinates" (or "points", 78 When high-dpi support is enabled, SDL_GetWindowSize() and display mode sizes 85 Some OpenGL ES functions such as glViewport expect sizes in pixels rather than 86 sizes in screen coordinates. When doing 2D rendering with OpenGL ES, an
|
A D | README-nacl.md | 80 a set of challenges of its own, in particular when big file sizes and slow
|
A D | README-android.md | 160 for different screen sizes.
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/ |
A D | package | 241 set pkgSizes = $pkg/$root.sizes
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/pascal/ |
A D | readme.txt | 28 translated directly into Pascal types of similar sizes (Integer,
|
/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_malloc.c | 1145 size_t sizes[], void *chunks[]); 4091 ialloc(mstate m, size_t n_elements, size_t * sizes, int opts, void *chunks[]) in ialloc() argument 4130 element_size = request2size(*sizes); in ialloc() 4136 contents_size += request2size(sizes[i]); in ialloc() 4182 size = request2size(sizes[i]); in ialloc() 4198 assert(remainder_size == request2size(sizes[i])); in ialloc() 4503 dlindependent_comalloc(size_t n_elements, size_t sizes[], void *chunks[]) in dlindependent_comalloc() argument 4505 return ialloc(gm, n_elements, sizes, 0, chunks); in dlindependent_comalloc() 4952 size_t sizes[], void *chunks[]) in mspace_independent_comalloc() argument 4959 return ialloc(ms, n_elements, sizes, 0, chunks); in mspace_independent_comalloc()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/optimized/ |
A D | legacy_optimized_ops.h | 86 const int rows = dims.sizes[0]; in MapAsMatrixWithFirstDimAsRows() 89 cols *= dims.sizes[d]; in MapAsMatrixWithFirstDimAsRows() 97 const int cols = dims.sizes[N - 1]; in MapAsMatrixWithLastDimAsCols() 100 rows *= dims.sizes[d]; in MapAsMatrixWithLastDimAsCols() 108 const int rows = dims.sizes[0]; in MapAsArrayWithFirstDimAsRows() 111 cols *= dims.sizes[d]; in MapAsArrayWithFirstDimAsRows() 130 if (dims1.sizes[i] != dims2.sizes[i]) { in AreSameDims() 2888 TFLITE_DCHECK_EQ(bias_dims.sizes[1], 1); in ConvAsGemm() 2889 TFLITE_DCHECK_EQ(bias_dims.sizes[2], 1); in ConvAsGemm() 2890 TFLITE_DCHECK_EQ(bias_dims.sizes[3], 1); in ConvAsGemm() [all …]
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/ |
A D | legacy_reference_ops.h | 39 {dims.sizes[3], dims.sizes[2], dims.sizes[1], dims.sizes[0]}); in ShapeFromDims() 2133 {output_dims.sizes[2], output_dims.sizes[1], output_dims.sizes[0]}); in ArgMax()
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | change.log | 11 Use merged upsample with scaled DCT sizes larger than 8. 187 upsampling. Fancy upsampling now uses direct DCT scaling with sizes
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/acceleration/configuration/ |
A D | configuration.proto | 127 // Whether to allow dynamic dimension sizes without re-compilation.
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoamodes.m | 190 * modes that have duplicate sizes. We don't just rely on SDL's higher level
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | Kconfig | 44 buffer sizes are always rounded up to the nearest multiple of 4,
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
A D | CMakeLists.txt | 272 # Check type sizes
|
A D | ChangeLog | 155 those arrays of wrong sizes, but is needed to avoid denial of services. 1928 calculating allocation buffer sizes. 2331 calculating required buffer sizes (CVE-2012-2113). 3821 * tif_dirwrite.c: Always write tile/strip offsets and sizes 4762 * tools/fax2tiff.c: Properly calculate sizes of temporary arrays 5242 * tools/tiff2ps.c: Fixed problem with page sizes as per bug 5630 tif_pixarlog.c, tif_write.c}: Handle the zero strip/tile sizes 7098 TIFFDataType sizes instead of working with tiffDataWidth array 7101 won't work when tags with uknown sizes founded. 7485 sizes. It fixes two problems: [all …]
|
/AliOS-Things-master/components/mbedtls/ |
A D | ChangeLog | 133 shorter. This allows the library to support all hash and signature sizes 303 or CCM instead of CBC, using hash sizes other than SHA-384, or using 334 * Make the receive and transmit buffers independent sizes, for situations 518 * Fix invalid buffer sizes passed to zlib during record compression and 1429 which algorithms and key sizes (curves for ECDSA) are acceptable. 1854 * Stricter check on SSL ClientHello internal sizes compared to actual packet 2347 * Stricter check on SSL ClientHello internal sizes compared to actual packet 2426 * GCM adapted to support sizes > 2^29
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | tiff2pdf.c | 878 const char* sizes[]={ in tiff2pdf_match_paper_size() local 924 for(i=0;sizes[i]!=NULL; i++){ in tiff2pdf_match_paper_size() 925 if (strcmp( (const char*)papersize, sizes[i])==0){ in tiff2pdf_match_paper_size()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/ |
A D | pngcp.c | 299 S(sizes, SIZES)
|