Searched refs:tsize (Results 1 - 25 of 26) sorted by relevance

12

/external/iproute2/tc/
H A Dtc_core.c150 s->tsize = 0;
159 if (s->tsize == 0)
160 s->tsize = 512;
163 while ((s->mtu >> s->cell_log) > s->tsize - 1)
166 *stab = malloc(s->tsize * sizeof(__u16));
171 for (i = s->tsize - 1; i >= 0; i--) {
H A Dtc_stab.c33 "Usage: ... stab [ mtu BYTES ] [ tsize SLOTS ] [ mpu BYTES ] \n"
36 " tsize : how many slots should size table have {512}\n"
89 } else if (matches(*argv, "tsize") == 0) {
91 if (s.tsize)
92 duparg("tsize", *argv);
93 if (get_u32(&s.tsize, *argv, 10)) {
94 invarg("tsize", "invalid table size");
141 if (s.tsize)
142 fprintf(fp, "tsize %u ", s.tsize);
[all...]
H A Dtc_qdisc.c171 stab.szopts.tsize * sizeof(__u16));
/external/opencv/cxcore/src/
H A Dcxlogic.cpp200 CvSize size, tsize; local
311 tsize.width = size.width;
312 tsize.height = dy;
314 tsize.height = size.height - y;
315 if( cont_flag || tsize.height == 1 )
317 tsize.width *= tsize.height;
318 tsize.height = 1;
322 cvSize(tsize.width*elem_size, tsize
358 CvSize size, tsize; local
[all...]
H A Dcxarithm.cpp293 CvSize size, tsize; local
488 tsize.width = size.width;
489 tsize.height = dy;
491 tsize.height = size.height - y;
492 if( cont_flag || tsize.height == 1 )
494 tsize.width *= tsize.height;
495 tsize.height = 1;
503 cvSize( tsize.width*cn, tsize
545 CvSize size, tsize; local
769 CvSize size, tsize; local
1017 CvSize size, tsize; local
[all...]
/external/qemu/slirp/
H A Dtftp.c369 if (strcmp(key, "tsize") == 0) {
370 int tsize = atoi(value); local
373 if (tsize == 0 && tftp_prefix) {
381 tsize = stat_p.st_size;
388 tftp_send_oack(spt, "tsize", tsize, tp);
/external/qemu/slirp-android/
H A Dtftp.c372 if (strcmp(key, "tsize") == 0) {
373 int tsize = atoi(value); local
376 if (tsize == 0 && tftp_prefix) {
383 tsize = stat_p.st_size;
390 tftp_send_oack(spt, "tsize", tsize, tp);
/external/libpcap/
H A Dsf-pcap.c501 static size_t tsize = 0; local
509 if (tsize < hdr->caplen) {
510 tsize = ((hdr->caplen + 1023) / 1024) * 1024;
513 tp = (u_char *)malloc(tsize);
515 tsize = 0;
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c2650 size_t tsize = chunksize(t); local
2652 compute_tree_index(tsize, idx);
2654 assert(tsize >= MIN_LARGE_SIZE);
2655 assert(tsize >= minsize_for_tree_index(idx));
2656 assert((idx == NTREEBINS-1) || (tsize < minsize_for_tree_index((idx+1))));
2661 assert(chunksize(u) == tsize);
3288 size_t tsize = m->topsize += qsize; local
3290 q->head = tsize | PINUSE_BIT;
3316 static void add_segment(mstate m, char* tbase, size_t tsize, flag_t mmapped) { argument
3333 init_top(m, (mchunkptr)tbase, tsize
3373 size_t tsize = 0; local
4257 size_t tsize = fm->topsize += psize; local
4416 init_user_mstate(char* tbase, size_t tsize) argument
4444 size_t tsize = granularity_align(rs); local
4658 size_t tsize = fm->topsize += psize; local
[all...]
/external/eigen/Eigen/src/LU/
H A DPartialPivLU.h326 Index tsize = size - k - bs; // trailing size local
333 BlockType A_2(lu,0,k+bs,rows,tsize);
335 BlockType A12(lu,k,k+bs,bs,tsize);
337 BlockType A22(lu,k+bs,k+bs,trows,tsize);
/external/lldb/source/Plugins/Process/POSIX/
H A DRegisterContext_i386.h145 uint32_t tsize; // Text segment size. member in struct:RegisterContext_i386::UserArea
H A DRegisterContextLinux_x86_64.cpp80 uint64_t tsize; // Text segment size. member in struct:UserArea
/external/kernel-headers/original/uapi/linux/
H A Dcoff.h133 char tsize[4]; /* text size in bytes, padded to FW bdry */ member in struct:__anon22928
H A Dpkt_sched.h103 unsigned int tsize; member in struct:tc_sizespec
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_triangle.c246 GLint tbytesline, tsize; member in struct:affine_info
391 tex10 -= info->tsize; \
392 tex11 -= info->tsize; \
585 info.tsize = texImg->Height * info.tbytesline;
602 GLint tbytesline, tsize; member in struct:persp_info
656 tex10 -= info->tsize; \
657 tex11 -= info->tsize; \
851 info.tsize = texImg->Height * info.tbytesline;
/external/mesa3d/src/mesa/swrast/
H A Ds_triangle.c246 GLint tbytesline, tsize; member in struct:affine_info
391 tex10 -= info->tsize; \
392 tex11 -= info->tsize; \
585 info.tsize = texImg->Height * info.tbytesline;
602 GLint tbytesline, tsize; member in struct:persp_info
656 tex10 -= info->tsize; \
657 tex11 -= info->tsize; \
851 info.tsize = texImg->Height * info.tbytesline;
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/
H A Dglyph_table.cc602 int32_t tsize = TransformationSize(contour); local
603 transformation->resize(tsize);
604 data_->ReadBytes(index, &((*transformation)[0]), 0, tsize);
/external/sfntly/cpp/src/sfntly/table/truetype/
H A Dglyph_table.cc602 int32_t tsize = TransformationSize(contour); local
603 transformation->resize(tsize);
604 data_->ReadBytes(index, &((*transformation)[0]), 0, tsize);
/external/elfutils/0.153/libdw/
H A DlibdwP.h366 #define libdw_alloc(dbg, type, tsize, cnt) \
368 size_t _required = (tsize) * (cnt); \
/external/iproute2/include/linux/
H A Dpkt_sched.h95 unsigned int tsize; member in struct:tc_sizespec
/external/chromium_org/third_party/cython/src/Cython/Debugger/
H A Dlibpython.py499 tsize = int_from_int(self._gdbval.cast(type_PyVarObject_ptr)['ob_size'])
500 if tsize < 0:
501 tsize = -tsize
502 size = _PyObject_VAR_SIZE(typeobj, tsize)
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_indata.c781 uint32_t tsize, pd_point; local
807 if (sctp_is_all_msg_on_reasm(asoc, &tsize) || (tsize >= pd_point)) {
2250 uint32_t tsize, pd_point; local
2292 if (sctp_is_all_msg_on_reasm(asoc, &tsize) || (tsize >= pd_point)) {
/external/chromium_org/third_party/expat/files/lib/
H A Dxmlparse.c5974 size_t tsize; local
5980 tsize = table->size * sizeof(NAMED *);
5981 table->v = (NAMED **)table->mem->malloc_fcn(tsize);
5986 memset(table->v, 0, tsize);
6009 size_t tsize = newSize * sizeof(NAMED *); local
6010 NAMED **newV = (NAMED **)table->mem->malloc_fcn(tsize);
6013 memset(newV, 0, tsize);
/external/expat/lib/
H A Dxmlparse.c5974 size_t tsize; local
5980 tsize = table->size * sizeof(NAMED *);
5981 table->v = (NAMED **)table->mem->malloc_fcn(tsize);
5986 memset(table->v, 0, tsize);
6009 size_t tsize = newSize * sizeof(NAMED *); local
6010 NAMED **newV = (NAMED **)table->mem->malloc_fcn(tsize);
6013 memset(newV, 0, tsize);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 641 milliseconds

12