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

12345678910

/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
269 put = window;
335 zmemcpy(put, next, copy);
339 put += copy;
495 *put++ = (unsigned char)(length);
567 from = put + copy;
571 from = put - offset;
578 *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;
622 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1218 * necessary to put mor
[all...]
H A Dgzwrite.c170 unsigned put = len; local
238 /* input was all buffered or compressed (put will fit in int) */
239 return (int)put;
335 /* do the printf() into the input buffer, put length in len */
414 /* 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.c460 put = strm->next_out; \
471 strm->next_out = put; \
554 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
610 unsigned char FAR *put; /* next output */ local
885 zmemcpy(put, next, copy);
889 put += copy;
1141 *put++ = 0;
1156 from = put - state->offset;
1163 *put++ = *from++;
1169 *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.h31 // /* customize io's functions (setup()/put()/teardown()) if needed. */
49 // The actual area passed to put() is stored
52 // set before calling put()
67 VP8IoPutHook put; member in struct:VP8Io
76 // during put()). Is NOT called if setup() failed.
81 // can be taken into consideration during the put() method.
115 VP8IoPutHook put,
H A Didec.c796 VP8IoPutHook put,
804 idec->io_.put = put;
795 WebPISetIOHooks(WebPIDecoder* const idec, VP8IoPutHook put, VP8IoSetupHook setup, VP8IoTeardownHook teardown, void* user_data) argument
/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBDatabase.cpp123 bool LevelDBDatabase::put(const LevelDBSlice& key, const Vector<char>& value) function in class:WebCore::LevelDBDatabase
/external/webkit/Source/WebCore/storage/
H A DIDBObjectStore.cpp84 m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOnly, request, m_transaction->backend(), ec);
92 PassRefPtr<IDBRequest> IDBObjectStore::put(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBKey> key, ExceptionCode& ec) function in class:WebCore::IDBObjectStore
95 m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOrUpdate, request, m_transaction->backend(), ec);
H A DIDBObjectStore.h63 PassRefPtr<IDBRequest> put(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, ExceptionCode& ec) { return put(context, value, 0, ec); } function in class:WebCore::IDBObjectStore
70 PassRefPtr<IDBRequest> put(ScriptExecutionContext*, PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBKey>, ExceptionCode&);
H A DIDBObjectStoreBackendImpl.cpp121 void IDBObjectStoreBackendImpl::put(PassRefPtr<SerializedScriptValue> prpValue, PassRefPtr<IDBKey> prpKey, PutMode putMode, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) function in class:WebCore::IDBObjectStoreBackendImpl
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp351 jmethodID put = env->GetMethodID(mapClass, "put", local
353 ALOG_ASSERT(put, "Could not find put method on HashMap");
362 env->CallObjectMethod(hashMap, put, key, val);
1746 jmethodID put = env->GetMethodID(mapClass, "put", local
1748 ALOG_ASSERT(put, "Could not find put method on HashMap");
1764 env->CallObjectMethod(hashMap, put, ke
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBObjectStore.h70 virtual void put(const WebSerializedScriptValue&, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBObjectStore
/external/webkit/Source/WebKit/chromium/src/
H A DIDBObjectStoreBackendProxy.cpp85 void IDBObjectStoreBackendProxy::put(PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBKey> key, PutMode putMode, PassRefPtr<IDBCallbacks> callbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) function in class:WebKit::IDBObjectStoreBackendProxy
90 m_webIDBObjectStore->put(value, key, static_cast<WebIDBObjectStore::PutMode>(putMode), new WebIDBCallbacksImpl(callbacks), *transactionProxy->getWebIDBTransaction(), ec);
H A DWebIDBObjectStoreImpl.cpp75 void WebIDBObjectStoreImpl::put(const WebSerializedScriptValue& value, const WebIDBKey& key, PutMode putMode, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) function in class:WebKit::WebIDBObjectStoreImpl
77 m_objectStore->put(value, key, static_cast<IDBObjectStoreBackendInterface::PutMode>(putMode), IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DJSNPObject.cpp281 void JSNPObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) function in class:WebKit::JSNPObject
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObjectFunctions.h188 void JSCallbackObject<Base>::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::JSCallbackObject
237 JSCallbackObject<Base>::putDirect(exec->globalData(), propertyName, value); // put as override property
243 return Base::put(exec, propertyName, value, slot);
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerActivation.cpp59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::DebuggerActivation
61 m_activation->put(exec, propertyName, value, slot);
/external/webkit/Source/JavaScriptCore/runtime/
H A DArguments.cpp256 void Arguments::put(ExecState* exec, unsigned i, JSValue value) function in class:JSC::Arguments
267 JSObject::put(exec, Identifier(exec, UString::number(i)), value, slot);
270 void Arguments::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::Arguments
300 JSObject::put(exec, propertyName, value, slot);
H A DJSActivation.cpp157 void JSActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::JSActivation
H A DJSArray.cpp321 void JSArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::JSArray
326 put(exec, i, value);
340 JSObject::put(exec, propertyName, value, slot);
343 void JSArray::put(ExecState* exec, unsigned i, JSValue value) function in class:JSC::JSArray
380 put(exec, Identifier::from(exec, i), value, slot);
407 // We have decided that we'll put the new item into the vector.
788 put(exec, i, slot.getValue(exec, i));
792 storage = m_storage; // The put() above could have grown the vector and realloc'ed storage.
837 put(exec, i, slot.getValue(exec, i));
842 storage = m_storage; // The put() abov
[all...]
H A DJSByteArray.cpp89 void JSByteArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::JSByteArray
97 JSObject::put(exec, propertyName, value, slot);
100 void JSByteArray::put(ExecState* exec, unsigned propertyName, JSValue value) function in class:JSC::JSByteArray
H A DJSCell.cpp141 void JSCell::put(ExecState* exec, const Identifier& identifier, JSValue value, PutPropertySlot& slot) function in class:JSC::JSCell
143 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value, slot);
146 void JSCell::put(ExecState* exec, unsigned identifier, JSValue value) function in class:JSC::JSCell
148 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value);

Completed in 602 milliseconds

12345678910