Searched refs:rope (Results 1 - 21 of 21) sorted by relevance

/external/qemu/telephony/
H A Dgsm.c223 gsm_rope_init( GsmRope rope )
225 rope->data = NULL;
226 rope->pos = 0;
227 rope->max = 0;
228 rope->error = 0;
232 gsm_rope_init_alloc( GsmRope rope, int count ) argument
234 rope->data = rope->data0;
235 rope->pos = 0;
236 rope
268 gsm_rope_done_acquire( GsmRope rope, int *psize ) argument
283 gsm_rope_ensure( GsmRope rope, int new_count ) argument
308 gsm_rope_can_grow( GsmRope rope, int count ) argument
326 gsm_rope_add_c( GsmRope rope, char c ) argument
335 gsm_rope_add( GsmRope rope, const void* buf, int buflen ) argument
344 gsm_rope_reserve( GsmRope rope, int count ) argument
[all...]
H A Dgsm.h188 extern void gsm_rope_init( GsmRope rope );
189 extern void gsm_rope_init_alloc( GsmRope rope, int alloc );
190 extern int gsm_rope_done( GsmRope rope );
191 extern bytes_t gsm_rope_done_acquire( GsmRope rope, int *psize );
192 extern void gsm_rope_add_c( GsmRope rope, char c );
193 extern void gsm_rope_add( GsmRope rope, const void* str, int len );
194 extern void* gsm_rope_reserve( GsmRope rope, int len );
H A Dsms.c275 gsm_rope_add_timestamp( GsmRope rope, const SmsTimeStampRec* ts ) argument
277 gsm_rope_add( rope, ts->data, 7 );
453 gsm_rope_add_address( GsmRope rope, const SmsAddressRec* addr ) argument
455 gsm_rope_add_c( rope, addr->len );
456 gsm_rope_add_c( rope, addr->toa );
457 gsm_rope_add( rope, addr->data, (addr->len+1)/2 );
459 if (!rope->error && rope->data != NULL)
460 rope->data[ rope
917 GsmRopeRec rope[1]; local
949 GsmRopeRec rope[1]; local
1095 gsm_rope_add_sms_user_header( GsmRope rope, int ref_number, int pdu_count, int pdu_index ) argument
1110 gsm_rope_add_sms_deliver_pdu( GsmRope rope, cbytes_t utf8, int utf8len, int use_gsm7, const SmsAddressRec* sender_address, const SmsTimeStampRec* timestamp, int ref_num, int pdu_count, int pdu_index) argument
1199 GsmRopeRec rope[1]; local
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Doutput_string_crope.h24 #include <ext/rope>
H A Doutput_string_test.cc22 #include <ext/rope>
H A Dvcencoder_test.cc31 #include <ext/rope>
/external/webkit/JavaScriptCore/runtime/
H A DOperations.h52 RefPtr<JSString::Rope> rope = JSString::Rope::createOrNull(ropeLength); local
53 if (UNLIKELY(!rope))
55 rope->append(index, s1);
56 rope->append(index, s2);
58 return new (globalData) JSString(globalData, rope.release());
70 RefPtr<JSString::Rope> rope = JSString::Rope::createOrNull(ropeLength); local
71 if (UNLIKELY(!rope))
73 rope->append(index, u1);
74 rope->append(index, s2);
76 return new (globalData) JSString(globalData, rope
88 RefPtr<JSString::Rope> rope = JSString::Rope::createOrNull(ropeLength); local
146 RefPtr<JSString::Rope> rope = JSString::Rope::createOrNull(ropeLength); local
[all...]
H A DJSString.cpp37 Rope* rope = this; local
40 unsigned length = rope->ropeLength();
42 Fiber& fiber = rope->fibers(i);
46 Rope* nextRope = fiber.rope();
53 if (rope != this)
54 fastFree(rope);
59 rope = workQueue.last();
69 // Overview: this methods converts a JSString from holding a string in rope form
72 // representing the rope is likely imbalanced with more nodes down the left side
78 // rope
108 Rope* rope = currentFiber.rope(); local
[all...]
H A DJSString.h74 // Each Fiber in a rope is either UString::Rep or another Rope.
79 Fiber(Rope* rope) : m_value(reinterpret_cast<intptr_t>(rope) | 1) {} argument
86 rope()->deref();
96 rope()->ref();
106 Rope* r = rope();
113 Rope* rope() { return reinterpret_cast<Rope*>(m_value & ~1); } function in class:JSC::JSString::Rope::Fiber
192 JSString(JSGlobalData* globalData, PassRefPtr<JSString::Rope> rope) argument
194 , m_stringLength(rope->stringLength())
197 m_fibers[0] = rope
[all...]
/external/stlport/test/eh/
H A Dtest_rope.cpp35 #include <rope>
37 #include <rope.h>
41 typedef STLPORT::rope<char, eh_allocator(char) > TestRope;
85 // dwa 1/25/00 - not actually valid for rope, because it doesn't
/external/stlport/stlport/stl/
H A D_rope.h27 // rope<_CharT,_Alloc> is a sequence of _CharT.
91 template<class _CharT, _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_CharT>) > class rope;
122 : public binary_function<rope<_CharT,_Alloc>, rope<_CharT,_Alloc>,
123 rope<_CharT,_Alloc> > {
124 rope<_CharT,_Alloc> operator() (const rope<_CharT,_Alloc>& __x, argument
125 const rope<_CharT,_Alloc>& __y) {
132 rope<_CharT,_Alloc>
134 { return rope<_Char
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) argument
1083 class rope class in inherits:__stlport_class
1283 rope(_RopeRep* __t, const allocator_type& __a = allocator_type()) function in class:rope
1363 rope(const _CharT* __s, const allocator_type& __a = allocator_type()) function in class:rope
1367 rope(const _CharT* __s, size_t __len, function in class:rope
1375 rope(const _CharT *__s, const _CharT *__e, function in class:rope
1380 rope(const const_iterator& __s, const const_iterator& __e, function in class:rope
1386 rope(const iterator& __s, const iterator& __e, function in class:rope
1392 rope(_CharT __c, const allocator_type& __a = allocator_type()) function in class:rope
1405 rope(size_t __n, _CharT __c, function in class:rope
1464 rope(const allocator_type& __a = allocator_type()) function in class:rope
1468 rope(char_producer<_CharT> *__fn, size_t __len, bool __delete_fn, function in class:rope
1475 rope(const _Self& __x) function in class:rope
1481 rope(__move_source<_Self> __src) function in class:rope
2193 operator +(const rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2202 operator +=(rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2210 operator +(const rope<_CharT,_Alloc>& __left, const _CharT* __right) argument
2226 operator +(const rope<_CharT,_Alloc>& __left, _CharT __right) argument
2239 operator <(const rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2246 operator ==(const rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2255 operator !=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2261 operator >(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2267 operator <=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2273 operator >=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
[all...]
H A D_rope.c59 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>* __r, size_t __pos)
64 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>& __r, size_t __pos):
133 // Set path and buffer inside a rope iterator. We assume that
364 # define __RopeLeaf__ _STLP_TYPENAME_ON_RETURN_TYPE rope<_CharT,_Alloc>::_RopeLeaf
365 # define __RopeRep__ _STLP_TYPENAME_ON_RETURN_TYPE rope<_CharT,_Alloc>::_RopeRep
369 void rope<_CharT, _Alloc>::_M_throw_out_of_range() const {
370 __stl_throw_out_of_range("rope");
373 // Concatenate a C string onto a leaf rope by copying the rope data.
377 rope<_Char
851 _S_io_get(basic_ostream<_CharT, _Traits>& __o, const rope<_CharT, _Alloc>& __r, const __true_type& ) argument
873 _S_io_get(basic_ostream<_CharT, _Traits>& __o, const rope<_CharT, _Alloc>& __r, const __false_type& ) argument
889 operator(basic_ostream<_CharT, _Traits>& __o, const rope<_CharT, _Alloc>& __r) argument
[all...]
/external/stlport/stlport/
H A Drope27 /* Comment following if you want to use rope class even if you ask for
30 # error The rope class is a STLport extension.
/external/chromium/sdch/open-vcdiff/
H A Dconfigure.ac42 AC_CHECK_HEADERS([ext/rope])
H A Dconfigure19971 for ac_header in ext/rope
/external/chromium/sdch/open-vcdiff/testdata/
H A Dconfigure.ac.v0.130 AC_CHECK_HEADERS([ext/rope])
H A Dconfigure.ac.v0.232 AC_CHECK_HEADERS([ext/rope])
/external/stlport/test/unit/
H A Drope_test.cpp5 # include <rope>
60 char const* cstr = "rope test string";
108 //first create a rope bigger than crope::_S_copy_max = 23
160 // Try and create a rope with a complex tree structure:
H A Dmvctor_declaration_test.cpp5 # include <rope>
H A Dhash_test.cpp13 # include <rope>
/external/stlport/src/
H A Ddll_main.cpp55 // for rope static members
56 # include <rope>

Completed in 268 milliseconds