Searched defs:put (Results 1 - 25 of 282) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/infback9/
H A Dinfback9.c180 put = window; \
183 if (out(out_desc, put, (unsigned)left)) { \
226 unsigned char FAR *put; /* next output */ local
267 put = window;
333 zmemcpy(put, next, copy);
337 put += copy;
493 *put++ = (unsigned char)(length);
565 from = put + copy;
569 from = put - offset;
576 *put
[all...]
/external/zlib/src/contrib/puff/
H A Dpufftest.c90 int ret, put = 0, fail = 0; local
101 put = 1;
103 fail = 1, put = 1;
147 if (put && ret == 0) {
/external/zlib/src/
H A Ddeflate.c470 int put; local
477 put = Buf_size - s->bi_valid;
478 if (put > bits)
479 put = bits;
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
481 s->bi_valid += put;
483 value >>= put; local
484 bits -= put;
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1220 * necessary to put mor
[all...]
H A Dgzwrite.c170 unsigned put = len; local
240 /* input was all buffered or compressed (put will fit in int) */
241 return (int)put;
341 /* do the printf() into the input buffer, put length in len */
426 /* do the printf() into the input buffer, put length in len */
H A Dinfback.c130 put = strm->next_out; \
141 strm->next_out = put; \
213 put = state->window; \
216 if (out(out_desc, put, left)) { \
259 unsigned char FAR *put; /* next output */ local
286 put = state->window;
347 zmemcpy(put, next, copy);
351 put += copy;
517 *put++ = (unsigned char)(state->length);
590 from = put
[all...]
H A Dinflate.c461 put = strm->next_out; \
472 strm->next_out = put; \
555 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
611 unsigned char FAR *put; /* next output */ local
886 zmemcpy(put, next, copy);
890 put += copy;
1142 *put++ = 0;
1157 from = put - state->offset;
1164 *put++ = *from++;
1170 *put
[all...]
/external/zlib/src/examples/
H A Dgzlog.c503 uint put; local
517 put = (MAX_STORE << 10) - log->stored;
518 if (put > len)
519 put = (uint)len;
520 if (put) {
521 if (write(log->fd, data, put) != put)
524 log->tcrc = crc32(log->tcrc, data, put);
525 log->tlen += put;
526 log->stored += put;
[all...]
/external/webp/src/dec/
H A Ddecode_vp8.h33 // /* customize io's functions (setup()/put()/teardown()) if needed. */
51 // The actual area passed to put() is stored
54 // set before calling put()
69 VP8IoPutHook put; member in struct:VP8Io
78 // during put()). Is NOT called if setup() failed.
83 // can be taken into consideration during the put() method.
117 VP8IoPutHook put,
H A Didec.c836 VP8IoPutHook put,
844 idec->io_.put = put;
835 WebPISetIOHooks(WebPIDecoder* const idec, VP8IoPutHook put, VP8IoSetupHook setup, VP8IoTeardownHook teardown, void* user_data) argument
/external/stlport/src/
H A Dlocale_impl.cpp306 locale::facet *put = 0; local
326 put = new time_put_byname<char, ostreambuf_iterator<char, char_traits<char> > >(__time);
333 _STLP_UNWIND(delete wget; delete put; delete get; _STLP_PRIV __release_time(__time));
341 this->insert(put, time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id);
571 // and also to money_get/put, num_get/put, and time_get/put
H A Dstrstream.cpp60 strstreambuf::strstreambuf(char* get, streamsize n, char* put) argument
63 _M_setup(get, put, n);
66 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) argument
69 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
73 unsigned char* put)
76 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
277 void strstreambuf::_M_setup(char* get, char* put, streamsize n) { argument
281 if (put) {
283 setp(put, put
72 strstreambuf(unsigned char* get, streamsize n, unsigned char* put) argument
[all...]
/external/stlport/stlport/stl/
H A D_monetary.h395 iter_type put(iter_type __s, bool __intl, ios_base& __str, function in class:money_put
398 iter_type put(iter_type __s, bool __intl, ios_base& __str, function in class:money_put
H A D_num_put.h60 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
65 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
70 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
76 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
81 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
87 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
93 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
99 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
H A D_ostream.c114 * Helper struct (guard) to put back a character in a streambuf
202 __failed = (use_facet<_NumPut>(__os.getloc())).put(ostreambuf_iterator<_CharT, _Traits>(__os.rdbuf()),
408 basic_ostream<_CharT, _Traits>::put(char_type __c) { function in class:_Traits
H A D_rope.h275 _Self& put(value_type __x) { function in class:sequence_buffer
798 // RopeFunctions. We put the buffer
H A D_time_facets.c401 time_put<_Ch,_OutputIter>::put(_OutputIter __s, ios_base& __f, _Ch __fill, function in class:_OutputIter
H A D_time_facets.h224 // put with the pattern obtained from _M_timeinfo._M_date_format or
256 _OutIt put(iter_type __s, ios_base& __f, _Ch __fill,
260 _OutIt put(iter_type __s, ios_base& __f, _Ch __fill, function in class:time_put
/external/srec/shared/include/
H A DHashMap.h52 ESR_ReturnCode(*put)(struct HashMap_t* self, const LCHAR* key, void* value); member in struct:HashMap_t
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/smack/src/org/jivesoftware/smack/util/
H A DCache.java114 public synchronized V put(K key, V value) { method in class:Cache
122 map.put(key, cacheObject);
267 put(entry.getKey(), value);
284 // in the same form they were put into cache.
430 * Wrapper for all objects put into cache. It's primary purpose is to maintain
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractHashedMap.java278 public V put(K key, V value) { method in class:AbstractHashedMap
298 * uses {@link #put(Object, Object)}.
313 put(entry.getKey(), entry.getValue());
1170 * subclass must be setup before <code>put()</code> is used.
1174 * what you want, as in this case the <code>put()</code> method on read can be
1199 * subclass must be setup before <code>put()</code> is used.
1203 * what you want, as in this case the <code>put()</code> method on read can be
1211 * before <code>put()</code> or <code>calculateThreshold()</code> will work correctly.
1224 put(key, value);
H A DAbstractReferenceMap.java247 public V put(K key, V value) { method in class:AbstractReferenceMap
256 return super.put(key, value);
961 * what you want, as in this case the <code>put()</code> method on read can be
993 * what you want, as in this case the <code>put()</code> method on read can be
1001 * before <code>put()</code> or <code>calculateThreshold()</code> will work correctly.
1019 put(key, value);
/external/smali/util/src/main/java/org/jf/util/
H A DSparseArray.java140 public void put(int key, E value) { method in class:SparseArray
292 put(key, value);
H A DSparseIntArray.java123 public void put(int key, int value) { method in class:SparseIntArray
221 put(key, value);
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 275 milliseconds

1234567891011>>