HomeSort by relevance Sort by last modified time
    Searched refs:used (Results 126 - 150 of 3017) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_batchbuffer.h 84 - intel->batch.used*4;
94 intel->batch.map[intel->batch.used++] = dword;
109 intel->batch.is_blit != is_blit && intel->batch.used) {
127 intel->batch.emit = intel->batch.used;
138 unsigned int _n = batch->used - batch->emit;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_batchbuffer.h 84 - intel->batch.used*4;
94 intel->batch.map[intel->batch.used++] = dword;
109 intel->batch.is_blit != is_blit && intel->batch.used) {
127 intel->batch.emit = intel->batch.used;
138 unsigned int _n = batch->used - batch->emit;
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_poll_thread.c 14 contributors may be used to endorse or promote products derived
127 if(poll_cb->data.used) {
181 poll_cb->data.used = 1;
188 poll_cb->data.used = 0;
203 int used = 0; local
206 used = poll_cb->data.used;
208 if(used)
343 if(poll_cb->data.used == 1){
354 poll_cb->data.used = 1
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
md5.c 213 unsigned long used, free; local
220 used = saved_lo & 0x3f;
222 if (used) {
223 free = 64 - used;
226 memcpy(&ctx->buffer[used], data, size);
230 memcpy(&ctx->buffer[used], data, free);
246 unsigned long used, free; local
248 used = ctx->lo & 0x3f;
250 ctx->buffer[used++] = 0x80;
252 free = 64 - used;
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_md5.cc 156 ulong_t used, free; local
163 used = saved_lo & 0x3f;
165 if (used) {
166 free = 64 - used;
169 internal_memcpy(&ctx->buffer[used], data, size);
173 internal_memcpy(&ctx->buffer[used], data, free);
188 ulong_t used, free; local
190 used = ctx->lo & 0x3f;
192 ctx->buffer[used++] = 0x80;
194 free = 64 - used;
    [all...]
  /external/freetype/src/base/
md5.c 214 unsigned long used, available; local
221 used = saved_lo & 0x3f;
223 if (used) {
224 available = 64 - used;
227 memcpy(&ctx->buffer[used], data, size);
231 memcpy(&ctx->buffer[used], data, available);
247 unsigned long used, available; local
249 used = ctx->lo & 0x3f;
251 ctx->buffer[used++] = 0x80;
253 available = 64 - used;
    [all...]
  /external/llvm/lib/Support/
MD5.cpp 189 unsigned long used, free; local
198 used = saved_lo & 0x3f;
200 if (used) {
201 free = 64 - used;
204 memcpy(&buffer[used], Ptr, Size);
208 memcpy(&buffer[used], Ptr, free);
233 unsigned long used, free; local
235 used = lo & 0x3f;
237 buffer[used++] = 0x80;
239 free = 64 - used;
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
md5.c 213 unsigned long used, free; local
220 used = saved_lo & 0x3f;
222 if (used) {
223 free = 64 - used;
226 memcpy(&ctx->buffer[used], data, size);
230 memcpy(&ctx->buffer[used], data, free);
246 unsigned long used, free; local
248 used = ctx->lo & 0x3f;
250 ctx->buffer[used++] = 0x80;
252 free = 64 - used;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 2 JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
158 then it will be used instead of the default ``(', ', ': ')`` separators.
171 the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.
222 then it will be used instead of the default ``(', ', ': ')`` separators.
235 the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.
271 ``object_hook`` will be used instead of the ``dict``. This feature
272 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
276 return value of ``object_pairs_hook`` will be used instead of the ``dict``.
277 This feature can be used to implement custom decoders that rely on th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 2 JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
158 then it will be used instead of the default ``(', ', ': ')`` separators.
171 the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.
222 then it will be used instead of the default ``(', ', ': ')`` separators.
235 the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.
271 ``object_hook`` will be used instead of the ``dict``. This feature
272 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
276 return value of ``object_pairs_hook`` will be used instead of the ``dict``.
277 This feature can be used to implement custom decoders that rely on th
    [all...]
  /external/bison/lib/
wait-process.c 55 The 'used' bit determines whether this entry is currently in use.
58 the 'used' field.)
59 The 'used' and 'child' fields are accessed from within the cleanup_slaves()
63 volatile sig_atomic_t used; member in struct:__anon4985
95 if (slaves[n].used)
126 if (!s->used)
130 entry as used only after the child pid has been written to the
133 s->used = 1;
166 new slave and its 'used' bit have been written to the memory locations
169 slaves[slaves_count].used = 1
    [all...]
  /external/chromium_org/sandbox/win/src/
service_resolver_unittest.cc 17 // This is the concrete resolver used to perform service-call type functions
108 size_t used; local
114 &used);
116 EXPECT_EQ(thunk_size, used);
124 thunk.get(), thunk_size, &used);
244 size_t used; local
251 &used);
258 &used);
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/drm/
i915_drm_batchbuffer.c 165 unsigned used; local
171 used = batch->base.ptr - batch->base.map;
172 if (used & 4) {
175 used += 4;
179 ret = drm_intel_bo_subdata(batch->bo, 0, used, batch->base.map);
181 ret = drm_intel_bo_exec(batch->bo, used, NULL, 0, 0);
193 fwrite(batch->base.map, used, 1, file);
  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_batchbuffer.c 165 unsigned used; local
171 used = batch->base.ptr - batch->base.map;
172 if (used & 4) {
175 used += 4;
179 ret = drm_intel_bo_subdata(batch->bo, 0, used, batch->base.map);
181 ret = drm_intel_bo_exec(batch->bo, used, NULL, 0, 0);
193 fwrite(batch->base.map, used, 1, file);
  /external/chromium_org/third_party/libwebp/utils/
bit_writer.c 259 int used = bw->used_; local
262 if (used + n_bits >= VP8L_WRITER_MAX_BITS) {
264 const int shift = VP8L_WRITER_MAX_BITS - used;
265 lbits |= (vp8l_atype_t)bits << used;
266 used = VP8L_WRITER_MAX_BITS;
273 while (used >= VP8L_WRITER_BITS) {
286 used -= VP8L_WRITER_BITS;
289 bw->bits_ = lbits | ((vp8l_atype_t)bits << used);
290 bw->used_ = used + n_bits;
  /external/chromium_org/third_party/skia/tests/
PathOpsLineIntersectionTest.cpp 79 for (int i = 0; i < ts.used(); ++i) {
83 REPORTER_ASSERT(reporter, ts.used() != 1);
100 REPORTER_ASSERT(reporter, pts == i.used());
143 REPORTER_ASSERT(reporter, pts == ts.used());
154 REPORTER_ASSERT(reporter, pts == ts.used());
163 REPORTER_ASSERT(reporter, pts == ts.used());
172 REPORTER_ASSERT(reporter, pts == ts.used());
181 REPORTER_ASSERT(reporter, pts == ts.used());
205 REPORTER_ASSERT(reporter, pts == ts.used());
  /external/skia/tests/
PathOpsLineIntersectionTest.cpp 79 for (int i = 0; i < ts.used(); ++i) {
83 REPORTER_ASSERT(reporter, ts.used() != 1);
100 REPORTER_ASSERT(reporter, pts == i.used());
143 REPORTER_ASSERT(reporter, pts == ts.used());
154 REPORTER_ASSERT(reporter, pts == ts.used());
163 REPORTER_ASSERT(reporter, pts == ts.used());
172 REPORTER_ASSERT(reporter, pts == ts.used());
181 REPORTER_ASSERT(reporter, pts == ts.used());
205 REPORTER_ASSERT(reporter, pts == ts.used());
  /external/webp/src/utils/
bit_writer.c 259 int used = bw->used_; local
262 if (used + n_bits >= VP8L_WRITER_MAX_BITS) {
264 const int shift = VP8L_WRITER_MAX_BITS - used;
265 lbits |= (vp8l_atype_t)bits << used;
266 used = VP8L_WRITER_MAX_BITS;
273 while (used >= VP8L_WRITER_BITS) {
286 used -= VP8L_WRITER_BITS;
289 bw->bits_ = lbits | ((vp8l_atype_t)bits << used);
290 bw->used_ = used + n_bits;
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
ios_plist_writer.py 27 This key can be used by vendors that restrict the app configuration
39 This command can be used to pretty-print the plist file:
56 It is used by PolicyTemplateGenerator to write plist files.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
bare_object_walker.js 7 * This is a bare class that tries to limit dependencies. It should only be used
10 * It should not be used for user-visible navigation.
  /external/clang/test/CXX/expr/expr.ass/
p9-cxx11.cpp 16 a = { 1 } = b; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
17 a = a + { 4 }; // expected-error {{initializer list cannot be used on the right hand side of operator '+'}}
18 a = { 3 } * { 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '*'}} \
19 expected-error {{initializer list cannot be used on the right hand side of operator '*'}}
33 int k1 = T() = { 1, 2 } = { 3, 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
34 int k2 = T() = { 1, 2 } + 1; // expected-error {{initializer list cannot be used on the left hand side of operator '+'}}
  /external/clang/test/CodeGen/
mangle.c 51 int foo7 __asm__("foo7") __attribute__((used));
  /external/clang/test/SemaCXX/
undefined-internal.cpp 11 foo(); // expected-note {{used here}}
12 bar<int>(); // expected-note {{used here}}
23 foo(); // expected-note {{used here}}
24 var = 0; // expected-note {{used here}}
25 bar<int>(); // expected-note {{used here}}
61 a.foo(); // expected-note {{used here}}
63 a.baz(); // expected-note {{used here}}
67 Test() {} // expected-note 2 {{used here}}
83 B<A>::var = 0; // expected-note {{used here}}
84 B<A>::foo(); // expected-note {{used here}
    [all...]
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.sh 29 * The ${symbol_prefix}* macros can be used as stable alternative names for the
31 * meant for use in jemalloc itself, but it can be used by application code to
  /external/qemu/distrib/sdl-1.2.15/src/hermes/
mmx_main.asm 37 ; Save the registers used by the blitters, necessary for optimized code
62 ; Restore the registers used by the blitters, necessary for optimized code

Completed in 2284 milliseconds

1 2 3 4 56 7 8 91011>>