Home
last modified time | relevance | path

Searched refs:top_size (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/core/lib/gtl/
Dtop_n_test.cc56 size_t top_size = std::min(limit, n_elements); in TestIntTopNHelper() local
57 EXPECT_EQ(top_size, top.size()); in TestIntTopNHelper()
58 if (test_peek && top_size != 0) { in TestIntTopNHelper()
59 EXPECT_EQ(shadow[top_size - 1], top.peek_bottom()); in TestIntTopNHelper()
68 EXPECT_EQ(top_size, v.size()); in TestIntTopNHelper()
69 for (int i = 0; i != top_size; ++i) { in TestIntTopNHelper()
/external/libgav1/libgav1/src/tile/bitstream/
Dpalette.cc36 const int top_size = in GetPaletteCache() local
43 if (left_size == 0 && top_size == 0) return 0; in GetPaletteCache()
46 const uint16_t* top = (top_size > 0) in GetPaletteCache()
52 std::merge(top, top + top_size, left, left + left_size, cache); in GetPaletteCache()
56 std::distance(cache, std::unique(cache, cache + left_size + top_size))); in GetPaletteCache()
/external/u-boot/common/
Ddlmalloc.c1072 INTERNAL_SIZE_T top_size; /* new size of top chunk */ local
1101 top_size = sbrk_size + old_top_size;
1102 set_head(top, top_size | PREV_INUSE);
1133 top_size = new_brk - brk + correction;
1134 set_head(top, top_size | PREV_INUSE);
1168 assert(((unsigned long)((char*)top + top_size) & (pagesz - 1)) == 0);
2168 long top_size; /* Amount of top-most memory */ local
2175 top_size = chunksize(top);
2176 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
2185 if (current_brk != (char*)(top) + top_size)
[all …]
Ddlmalloc.src1937 INTERNAL_SIZE_T top_size; /* new size of top chunk */
1966 top_size = sbrk_size + old_top_size;
1967 set_head(top, top_size | PREV_INUSE);
1998 top_size = new_brk - brk + correction;
1999 set_head(top, top_size | PREV_INUSE);
2033 assert(((unsigned long)((char*)top + top_size) & (pagesz - 1)) == 0);
2948 long top_size; /* Amount of top-most memory */
2955 top_size = chunksize(top);
2956 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
2965 if (current_brk != (char*)(top) + top_size)
[all …]
/external/bcc/tools/lib/
Duobjnew.py184 elif args.top_size:
186 data = data[-args.top_size:]
/external/webp/src/dec/
Dframe_dec.c687 const size_t top_size = sizeof(VP8TopSamples) * mb_w; in AllocateMemory() local
698 const size_t cache_size = top_size * cache_height; in AllocateMemory()
703 + top_size + mb_info_size + f_info_size in AllocateMemory()
726 mem += top_size; in AllocateMemory()
/external/tensorflow/tensorflow/core/kernels/
Dmaxpooling_op_gpu.cu.cc463 const int top_size = batch * channels * pooled_height * pooled_width; in operator ()() local
466 (top_size + kThreadsPerBlock - 1) / kThreadsPerBlock, kThreadsPerBlock, 0, in operator ()()
467 d.stream(), top_size, bottom_data, height, width, channels, pooled_height, in operator ()()
/external/libgav1/libgav1/src/tile/
Dprediction.cc262 const int top_size = is_directional_mode ? top_and_left_size : width; in IntraPrediction() local
311 Memset(top_row, buffer[y][x - 1], top_size); in IntraPrediction()
313 Memset(top_row, (1 << (bitdepth - 1)) - 1, top_size); in IntraPrediction()
320 if (top_size - top_limit > 0) { in IntraPrediction()
322 top_size - top_limit); in IntraPrediction()
/external/webp/src/enc/
Diterator_enc.c36 const size_t top_size = enc->mb_w_ * 16; in InitTop() local
37 memset(enc->y_top_, 127, 2 * top_size); in InitTop()