Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/gtl/
Dtop_n_test.cc57 size_t top_size = std::min(limit, n_elements); in TestIntTopNHelper() local
58 EXPECT_EQ(top_size, top.size()); in TestIntTopNHelper()
59 if (test_peek && top_size != 0) { in TestIntTopNHelper()
60 EXPECT_EQ(shadow[top_size - 1], top.peek_bottom()); in TestIntTopNHelper()
69 EXPECT_EQ(top_size, v.size()); in TestIntTopNHelper()
70 for (int i = 0; i != top_size; ++i) { in TestIntTopNHelper()
/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);
2169 long top_size; /* Amount of top-most memory */ local
2176 top_size = chunksize(top);
2177 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
2186 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/tensorflow/tensorflow/core/kernels/
Dmaxpooling_op_gpu.cu.cc445 const int top_size = batch * channels * pooled_height * pooled_width; in operator ()() local
446 MaxPoolBackwardNoMaskNHWC<<<(top_size + kThreadsPerBlock - 1) / in operator ()()
449 top_size, bottom_data, height, width, channels, pooled_height, in operator ()()
/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/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()