Searched defs:used (Results 26 - 50 of 219) sorted by relevance

123456789

/external/iproute2/include/
H A Dip6tables.h109 unsigned int used; member in struct:ip6tables_target
H A Diptables.h135 unsigned int used; member in struct:iptables_target
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_validate.c58 unsigned used; member in struct:pb_validate
80 if(vl->used && vl->entries[vl->used - 1].buf == buf) {
81 vl->entries[vl->used - 1].flags |= flags;
86 if(vl->used == vl->size) {
106 assert(!vl->entries[vl->used].buf);
107 pb_reference(&vl->entries[vl->used].buf, buf);
108 vl->entries[vl->used].flags = flags;
109 ++vl->used;
121 for(i = 0; i < vl->used;
[all...]
/external/mesa3d/src/gallium/winsys/i915/sw/
H A Di915_sw_batchbuffer.c106 unsigned used = 0; local
110 used = batch->base.ptr - batch->base.map;
111 assert((used & 3) == 0);
116 used += 4;
119 if ((used & 4) == 0) {
126 used = batch->base.ptr - batch->base.map;
127 assert((used & 4) == 0);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dmd5.c213 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/qemu/distrib/zlib-1.2.8/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
99 The length counts are used for other purposes as well, i.e. finding
151 filled is at next and has curr index bits. The code being used is huff
165 counts are used for this, and so count[] is decremented as codes are
168 used keeps track of how many table entries have been allocated from the
183 base = extra = work; /* dummy value--not used */
207 used = 1U << root; /* use root table entries */
208 mask = used
[all...]
/external/valgrind/main/memcheck/tests/
H A Dleak-pool.c18 size_t used; member in struct:pool
25 void *a = p->buf + p->used;
26 assert(p->used + n < p->allocated);
28 p->used += n;
38 p->used = 0;
/external/zlib/src/contrib/infback9/
H A Dinftree9.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
101 The length counts are used for other purposes as well, i.e. finding
145 filled is at next and has curr index bits. The code being used is huff
159 counts are used for this, and so count[] is decremented as codes are
162 used keeps track of how many table entries have been allocated from the
177 base = extra = work; /* dummy value--not used */
201 used = 1U << root; /* use root table entries */
202 mask = used
[all...]
/external/zlib/src/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
99 The length counts are used for other purposes as well, i.e. finding
151 filled is at next and has curr index bits. The code being used is huff
165 counts are used for this, and so count[] is decremented as codes are
168 used keeps track of how many table entries have been allocated from the
183 base = extra = work; /* dummy value--not used */
207 used = 1U << root; /* use root table entries */
208 mask = used
[all...]
/external/bison/lib/
H A Dwait-process.c55 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:__anon365
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
[all...]
/external/ceres-solver/internal/ceres/
H A Dsolver.cc14 // used to endorse or promote products derived from this software without
488 string used; local
489 StringifyOrdering(linear_solver_ordering_used, &used);
493 used.c_str());
506 string used; local
507 StringifyOrdering(inner_iteration_ordering_used, &used);
511 used.c_str());
/external/chromium_org/extensions/browser/api/storage/
H A Dsettings_storage_quota_enforcer.cc104 size_t used = 0; local
107 used += GetBytesInUse(*it);
109 return used;
/external/chromium_org/media/audio/win/
H A Dwaveout_output_win.cc325 // return to us how many bytes were used.
326 // TODO(fbarchard): Handle used 0 by queueing more.
331 uint32 used = frames_filled * audio_bus_->channels() * local
334 if (used <= buffer_size_) {
341 buffer->dwBufferLength = used * format_.Format.nChannels / channels_;
/external/chromium_org/net/disk_cache/blockfile/
H A Dblock_bitmaps_v3.cc155 // We are interested in the total number of blocks used by this file type, and
157 // used blocks). In order to find out the number of used blocks, we have to
165 int used = capacity - bitmaps_[index].EmptyBlocks(); local
166 DCHECK_GE(used, 0);
169 *used_count += used;
H A Dblock_files_unittest.cc287 int used, load; local
289 files.GetFileStats(0, &used, &load);
290 EXPECT_EQ(101, used);
293 files.GetFileStats(1, &used, &load);
294 EXPECT_EQ(203, used);
297 files.GetFileStats(2, &used, &load);
298 EXPECT_EQ(0, used);
328 // The first part of the allocation map should be completely filled. We used
/external/chromium_org/sandbox/win/src/
H A Dservice_resolver_unittest.cc17 // 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/drivers/r300/compiler/
H A Dradeon_program.c98 * This function fills in the parameter 'used' with a writemask that
99 * represent which components of each temporary register are used by the
102 * @param used The function does not initialize this parameter.
106 unsigned char * used,
111 d.Used = used;
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
125 * in the used temporary list (param 'used')
126 * @param used lis
104 rc_get_used_temporaries( struct radeon_compiler * c, unsigned char * used, unsigned int used_length) argument
134 rc_find_free_temporary_list( struct radeon_compiler * c, unsigned char * used, unsigned int used_length, unsigned int mask) argument
152 unsigned char used[RC_REGISTER_MAX_INDEX]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_swtnl_backend.c151 size_t used = svga_render->vertex_size * ((size_t)max_index + 1); local
161 svga_render->vbuf_used = MAX2(svga_render->vbuf_used, used);
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/drm/
H A Di915_drm_batchbuffer.c165 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/mesa/src/src/glsl/
H A Dopt_dead_code_local.cpp30 * they're used before the variable is completely reassigned.
60 /* bitmask of xyzw channels written that haven't been used so far. */
71 void kill_channels(ir_variable *const var, int used) argument
80 entry->available, used);
81 entry->available &= ~used;
106 int used = 0; local
107 used |= 1 << ir->mask.x;
108 used |= 1 << ir->mask.y;
109 used |= 1 << ir->mask.z;
110 used |
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di830_texblend.c116 * settings. Since \c gl_texture_unit::_CurrentCombine is used, both
149 unsigned used; local
359 used = 0;
360 state[used++] = (_3DSTATE_MAP_BLEND_OP_CMD(blendUnit) |
365 state[used++] = (_3DSTATE_MAP_BLEND_OP_CMD(blendUnit) |
371 state[used++] = (_3DSTATE_MAP_BLEND_ARG_CMD(blendUnit) |
376 state[used++] = (_3DSTATE_MAP_BLEND_ARG_CMD(blendUnit) |
382 return emit_factor(blendUnit, state, used, factor);
384 return used;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DIntersections.h110 int used() const { function in class:Intersections
138 // used by addCoincident to remove ordinary intersections in range
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_md5.cc156 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/elfutils/0.153/backends/
H A Dia64_retval.c132 case 10: /* x86-style long double, not really used */
183 int used = hfa_type (child_typedie, child_size, local
185 if (used < 0 || used > 8)
186 return used;
187 if (used > max_used)
188 max_used = used;
218 int used = hfa_type (base_typedie, base_size, locp, 0); local
219 if (used < 0 || used >
[all...]
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py133 used = 0 variable
136 global total, used, last_block
154 used += num
197 occupancy = used * 100. / total

Completed in 2939 milliseconds

123456789