Searched refs:sz (Results 1 - 25 of 80) sorted by relevance

1234

/external/ipsec-tools/src/racoon/
H A Ddebugrm.h41 #define racoon_malloc(sz) malloc((sz))
44 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))
47 #define racoon_realloc(old, sz) realloc((old), (sz))
57 #define racoon_malloc(sz) \
58 DRM_malloc(__FILE__, __LINE__, __func__, (sz))
61 #define racoon_calloc(cnt, sz) \
62 DRM_calloc(__FILE__, __LINE__, __func__, (cnt), (sz))
[all...]
H A Dgcmalloc.h91 #define racoon_malloc(sz) GC_debug_malloc(sz, GC_EXTRAS)
92 #define racoon_calloc(cnt, sz) GC_debug_malloc(cnt * sz, GC_EXTRAS)
93 #define racoon_realloc(old, sz) GC_debug_realloc(old, sz, GC_EXTRAS)
111 #define racoon_malloc(sz) malloc((sz))
114 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))
[all...]
/external/oprofile/libutil/
H A Dop_libiberty.c19 void * xcalloc(size_t n_elem, size_t sz) argument
21 void * ptr = xmalloc(n_elem * sz);
23 memset(ptr, '\0', n_elem * sz);
/external/webkit/WebCore/rendering/
H A DBidiRun.cpp55 void* BidiRun::operator new(size_t sz, RenderArena* renderArena) throw() argument
60 return renderArena->allocate(sz);
63 void BidiRun::operator delete(void* ptr, size_t sz) argument
71 *(size_t*)ptr = sz;
H A DLayoutState.cpp114 void* LayoutState::operator new(size_t sz, RenderArena* renderArena) throw() argument
116 return renderArena->allocate(sz);
119 void LayoutState::operator delete(void* ptr, size_t sz) argument
122 *(size_t*)ptr = sz;
/external/opencore/fileformats/avi/parser/src/
H A Dpv_avifile_parser_utils.cpp74 const uint32 sz = 4; local
75 uint8 temp[sz] = {0};
77 if (aFp->Read(temp, 1, sz) != sz)
84 big_endian_to_host((char*)temp, sz);
87 for (uint32 ii = 0; ii < sz; ii++)
116 const uint32 sz = 2; local
117 uint8 temp[sz] = {0};
119 if (aFp->Read(temp, 1, sz) != sz)
[all...]
/external/skia/gm/
H A Dgm.h14 SkISize sz; local
15 sz.set(w, h);
16 return sz;
/external/iproute2/tc/
H A Dtc_core.c90 unsigned tc_adjust_size(unsigned sz, unsigned mpu, enum link_layer linklayer) argument
92 if (sz < mpu)
93 sz = mpu;
97 return tc_align_to_atm(sz);
101 return sz;
114 unsigned sz; local
128 sz = tc_adjust_size((i + 1) << cell_log, mpu, linklayer);
129 rtab[i] = tc_calc_xmittime(bps, sz);
132 r->cell_align=-1; // Due to the sz calc
145 unsigned int sz; local
[all...]
H A Dtc_util.c280 double sz; local
283 sz = strtod(str, &p);
289 sz *= 1024;
291 sz *= 1024*1024*1024;
293 sz *= 1024*1024*1024/8;
295 sz *= 1024*1024;
297 sz *= 1024*1024/8;
299 sz *= 1024/8;
304 *size = sz;
337 void print_size(char *buf, int len, __u32 sz) argument
[all...]
/external/kernel-headers/original/asm-arm/
H A Dbitops.h206 #define find_first_zero_bit(p,sz) _find_first_zero_bit_le(p,sz)
207 #define find_next_zero_bit(p,sz,off) _find_next_zero_bit_le(p,sz,off)
208 #define find_first_bit(p,sz) _find_first_bit_le(p,sz)
209 #define find_next_bit(p,sz,off) _find_next_bit_le(p,sz,off)
224 #define find_first_zero_bit(p,sz) _find_first_zero_bit_be(p,sz)
[all...]
/external/webkit/WebCore/platform/graphics/transforms/
H A DScaleTransformOperation.h39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) argument
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) argument
73 , m_z(sz)
H A DTransformOperations.h44 void apply(const IntSize& sz, TransformationMatrix& t) const argument
47 m_operations[i]->apply(t, sz);
/external/zlib/contrib/dotzlib/DotZLib/
H A DInflater.cs22 private static extern int inflateInit_(ref ZStream sz, string vs, int size); argument
25 private static extern int inflate(ref ZStream sz, int flush); argument
28 private static extern int inflateReset(ref ZStream sz); argument
31 private static extern int inflateEnd(ref ZStream sz); argument
H A DDeflater.cs22 private static extern int deflateInit_(ref ZStream sz, int level, string vs, int size); argument
25 private static extern int deflate(ref ZStream sz, int flush); argument
28 private static extern int deflateReset(ref ZStream sz); argument
31 private static extern int deflateEnd(ref ZStream sz); argument
/external/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl87 undef $self->{sz};
90 $self->{sz} = "b";
92 $self->{sz} = ""
95 $self->{sz} = $2;
102 my $sz = shift;
103 $self->{sz} = $sz if (defined($sz) && !defined($self->{sz}));
104 $self->{sz};
[all...]
/external/stlport/test/unit/
H A Dioiter_test.cpp44 string::size_type sz = strlen(strorg); local
46 for ( i = 0; i < sz; ++i ) {
57 for ( i = 0; i < sz /* objIStrmbIt1 != end */; ++i ) {
66 for ( i = 0; i < sz; ++i ) {
/external/libpcap/missing/
H A Dsnprintf.c70 size_t sz; member in struct:state
104 if (state->max_sz && state->sz >= state->max_sz)
107 state->sz = max(state->sz * 2, state->sz + n);
109 state->sz = min(state->sz, state->max_sz);
110 tmp = realloc (state->str, state->sz);
115 state->theend = state->str + state->sz - 1;
466 snprintf (char *str, size_t sz, cons argument
610 vsnprintf(char *str, size_t sz, const char *format, va_list args) argument
[all...]
/external/tcpdump/missing/
H A Dsnprintf.c70 size_t sz; member in struct:state
104 if (state->max_sz && state->sz >= state->max_sz)
107 state->sz = max(state->sz * 2, state->sz + n);
109 state->sz = min(state->sz, state->max_sz);
110 tmp = realloc (state->str, state->sz);
115 state->theend = state->str + state->sz - 1;
466 snprintf (char *str, size_t sz, cons argument
610 vsnprintf(char *str, size_t sz, const char *format, va_list args) argument
[all...]
/external/quake/quake/src/WinQuake/
H A Dconproc.cpp223 char upper, *sz; local
225 sz = (LPTSTR) szText;
227 while (*sz)
230 if (*sz == 10)
231 *sz = 13;
233 upper = toupper(*sz);
239 rec.Event.KeyEvent.wVirtualScanCode = CharToCode (*sz);
240 rec.Event.KeyEvent.uChar.AsciiChar = *sz;
241 rec.Event.KeyEvent.uChar.UnicodeChar = *sz;
242 rec.Event.KeyEvent.dwControlKeyState = isupper(*sz)
[all...]
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
H A DSDL_qsort.c180 #define Pivot(swapper,sz) \
181 if ((size_t)(last-first)>PIVOT_THRESHOLD*sz) mid=pivot_big(first,mid,last,sz,compare);\
196 first+=sz; last-=sz; \
204 #define Partition(swapper,sz) { \
207 while (compare(first,pivot)<0) first+=sz; \
208 while (compare(pivot,last)<0) last-=sz; \
211 first+=sz; last-=sz; } \
[all...]
/external/opencore/protocols/systems/tools/general/common/src/
H A Dmedia_fragment.cpp39 OSCL_EXPORT_REF MediaFragment* DefFragmentAllocator::allocate_fragment(uint32 sz) argument
44 frag.ptr = OSCL_DEFAULT_MALLOC(sz);
45 frag.len = sz;
115 OSCL_EXPORT_REF MediaFragment* PoolFragmentAllocator::allocate_fragment(uint32 sz) argument
119 if (free_list && ((int32) sz <= frag_size))
125 entry->frag.len = sz;
/external/oprofile/libabi/
H A Dop_abi.c70 size_t sz = sizeof(unsigned int); local
73 assert(probe_byte[0] == 0xff || probe_byte[sz - 1] == 0xff);
/external/tinyxml/
H A Dtinystr.h205 void init(size_type sz) { init(sz, sz); }
206 void set_size(size_type sz) { rep_->str[ rep_->size = sz ] = '\0'; }
216 void init(size_type sz, size_type cap)
221 rep_->str[ rep_->size = sz ] = '\0';
/external/webkit/WebCore/platform/gtk/
H A DScrollbarGtk.cpp151 IntSize sz = frameRect().size(); local
152 sz.clampNegativeToZero();
154 GtkAllocation allocation = { loc.x(), loc.y(), sz.width(), sz.height() };
/external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
H A Dlevel2.cpp665 int fClosing = 0, mpl = 0, muxCode = 0, sz = 0; local
719 sz = ParseHdr(&fClosing, &mpl, &muxCode, &num_errors, &optional_header);
743 PV_STAT_INCR_COND(iNumStuffingRx, 1, (sz == 0))
751 else if (sz == -1)
759 sz = (bsbsz > iMplRemaining) ? iMplRemaining : bsbsz;
760 if ((iPduPos + sz - 1) > iPduEndPos)
764 oscl_memcpy(iPduPos, bsbuf, sz);
765 bsbuf += sz;
766 iPduPos += sz;
767 bsbsz -= sz;
[all...]

Completed in 176 milliseconds

1234