Home
last modified time | relevance | path

Searched refs:adjust (Results 1 – 25 of 260) sorted by relevance

1234567891011

/external/chromium_org/third_party/tcmalloc/vendor/src/
Dsystem-alloc.cc318 size_t adjust = 0; in Alloc()
320 adjust = alignment - (ptr & (alignment - 1)); in Alloc()
324 if (adjust > 0) { in Alloc()
325 munmap(reinterpret_cast<void*>(ptr), adjust); in Alloc()
327 if (adjust < extra) { in Alloc()
328 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust); in Alloc()
331 ptr += adjust; in Alloc()
406 size_t adjust = 0; in Alloc()
408 adjust = alignment - (ptr & (alignment - 1)); in Alloc()
412 if (adjust > 0) { in Alloc()
[all …]
Dmemfs_malloc.cc203 size_t adjust = 0; in AllocInternal() local
205 adjust = alignment - (ptr & (alignment - 1)); in AllocInternal()
207 ptr += adjust; in AllocInternal()
211 *actual_size = size + extra - adjust; in AllocInternal()
/external/srec/srec/clib/
Dcnorm_tr.c78 int ii, adjust; in estimate_normalization_parameters() local
91 adjust = mean_normalize_data(chandata[ii], 0); in estimate_normalization_parameters()
94 shift_distribution_counts(chandata[ii], adjust); in estimate_normalization_parameters()
96 shift_parameters(chandata[ii], adjust); in estimate_normalization_parameters()
98 channorm->imelda_adjust[ii] += adjust; in estimate_normalization_parameters()
100 channorm->adjust[ii] += adjust; in estimate_normalization_parameters()
116 log_report("%d ", channorm->adjust[ii]); in estimate_normalization_parameters()
144 channorm->adjust[ii] = channorm->target[ii] in setup_channel_normalization()
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dsystem-alloc.cc456 size_t adjust = 0; in Alloc()
458 adjust = alignment - (ptr & (alignment - 1)); in Alloc()
462 if (adjust > 0) { in Alloc()
463 munmap(reinterpret_cast<void*>(ptr), adjust); in Alloc()
465 if (adjust < extra) { in Alloc()
466 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust); in Alloc()
469 ptr += adjust; in Alloc()
543 size_t adjust = 0; in Alloc()
545 adjust = alignment - (ptr & (alignment - 1)); in Alloc()
549 if (adjust > 0) { in Alloc()
[all …]
Dmemfs_malloc.cc203 size_t adjust = 0; in AllocInternal() local
205 adjust = alignment - (ptr & (alignment - 1)); in AllocInternal()
207 ptr += adjust; in AllocInternal()
211 *actual_size = size + extra - adjust; in AllocInternal()
/external/chromium_org/third_party/WebKit/Source/wtf/
DTCSystemAlloc.cpp113 size_t adjust = 0; in TryMmap() local
115 adjust = alignment - (ptr & (alignment - 1)); in TryMmap()
119 if (adjust > 0) { in TryMmap()
120 munmap(reinterpret_cast<void*>(ptr), adjust); in TryMmap()
122 if (adjust < extra) { in TryMmap()
123 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust); in TryMmap()
126 ptr += adjust; in TryMmap()
/external/llvm/test/Transforms/InstCombine/
D2011-09-03-Trampoline.ll4 declare i8* @llvm.adjust.trampoline(i8*)
13 %tramp = call i8* @llvm.adjust.trampoline(i8* %gep)
26 %tramp = call i8* @llvm.adjust.trampoline(i8* %trampmem)
35 %tramp = call i8* @llvm.adjust.trampoline(i8* %trampmem)
50 %tramp0 = call i8* @llvm.adjust.trampoline(i8* %trampmem)
55 %tramp1 = call i8* @llvm.adjust.trampoline(i8* %trampmem)
69 %tramp0 = call i8* @llvm.adjust.trampoline(i8* %gep)
73 %tramp1 = call i8* @llvm.adjust.trampoline(i8* %gep)
77 %tramp2 = call i8* @llvm.adjust.trampoline(i8* %gep)
D2008-01-14-VarArgTrampoline.ll7 declare i8* @llvm.adjust.trampoline(i8*) nounwind
20 %tramp = call i8* @llvm.adjust.trampoline( i8* %TRAMP.216.sub)
/external/skia/src/views/animated/
DSkScrollBarView.cpp26 this->adjust(); in SkScrollBarView()
37 this->adjust(); in setStart()
49 this->adjust(); in setShown()
61 this->adjust(); in setTotal()
120 void SkScrollBarView::adjust() in adjust() function in SkScrollBarView
/external/chromium_org/third_party/skia/src/views/animated/
DSkScrollBarView.cpp26 this->adjust(); in SkScrollBarView()
37 this->adjust(); in setStart()
49 this->adjust(); in setShown()
61 this->adjust(); in setTotal()
120 void SkScrollBarView::adjust() in adjust() function in SkScrollBarView
/external/skia/src/core/
DSkAutoKern.h27 SkFixed adjust(const SkGlyph& glyph) in adjust() function
44 SkFixed adjust = SkAutoKern_AdjustF(fPrevRsbDelta, glyph.fLsbDelta); in adjust() local
46 return adjust; in adjust()
/external/chromium_org/third_party/skia/src/core/
DSkAutoKern.h27 SkFixed adjust(const SkGlyph& glyph) in adjust() function
44 SkFixed adjust = SkAutoKern_AdjustF(fPrevRsbDelta, glyph.fLsbDelta); in adjust() local
46 return adjust; in adjust()
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
DglX_proto_send.py474 def common_emit_one_arg(self, p, pc, adjust, extra_offset): argument
482 % (pc, p.offset + adjust, p.size_string() )
485 % (pc, p.offset + adjust, src_ptr, p.size_string() )
488 % (pc, p.offset + adjust, extra_offset, src_ptr, p.size_string() )
490 def common_emit_args(self, f, pc, adjust, skip_vla): argument
495 self.common_emit_one_arg(p, pc, adjust, extra_offset)
515 adjust = 8
517 adjust = 4
521 self.common_emit_one_arg(param, pc, adjust, None)
524 … print '(void) memcpy((void *)(%s + %u), zero, 4);' % (pc, (param.offset + param.size()) + adjust)
[all …]
/external/mesa3d/src/mapi/glapi/gen/
DglX_proto_send.py474 def common_emit_one_arg(self, p, pc, adjust, extra_offset): argument
482 % (pc, p.offset + adjust, p.size_string() )
485 % (pc, p.offset + adjust, src_ptr, p.size_string() )
488 % (pc, p.offset + adjust, extra_offset, src_ptr, p.size_string() )
490 def common_emit_args(self, f, pc, adjust, skip_vla): argument
495 self.common_emit_one_arg(p, pc, adjust, extra_offset)
515 adjust = 8
517 adjust = 4
521 self.common_emit_one_arg(param, pc, adjust, None)
524 … print '(void) memcpy((void *)(%s + %u), zero, 4);' % (pc, (param.offset + param.size()) + adjust)
[all …]
/external/icu4c/layout/
DKernTable.cpp176 float adjust = 0; in process() local
215 adjust += font->xUnitsToPoints(value); in process()
223 storage.adjustPosition(i, adjust, 0, success); in process()
226 storage.adjustPosition(storage.getGlyphCount(), adjust, 0, success); in process()
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
Dtable_single_selection_model.js50 adjust: function(index, itemsRemoved, itemsAdded) { method in TableSingleSelectionModel
51 ListSingleSelectionModel.prototype.adjust.call( method in ListSingleSelectionModel
Dtable_selection_model.js56 adjust: function(index, itemsRemoved, itemsAdded) { method in TableSelectionModel
57 ListSelectionModel.prototype.adjust.call( method in ListSelectionModel
/external/javassist/sample/duplicate/
DBall.java23 private void adjust() { in adjust() method in Ball
38 adjust(); in move()
/external/llvm/test/CodeGen/X86/
D2011-08-23-Trampoline.ll9 %tramp22 = call i8* @llvm.adjust.trampoline( i8* null)
16 declare i8* @llvm.adjust.trampoline(i8*) nounwind
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
Dport.cc248 size_t adjust = 0; in TCMalloc_SystemAlloc() local
250 adjust = alignment - (ptr & (alignment - 1)); in TCMalloc_SystemAlloc()
253 ptr += adjust; in TCMalloc_SystemAlloc()
/external/chromium_org/third_party/freetype/src/base/
Dftgloadr.c209 FT_Bool adjust = 0; in FT_GlyphLoader_CheckPoints() local
242 adjust = 1; in FT_GlyphLoader_CheckPoints()
260 adjust = 1; in FT_GlyphLoader_CheckPoints()
264 if ( adjust ) in FT_GlyphLoader_CheckPoints()
/external/freetype/src/base/
Dftgloadr.c209 FT_Bool adjust = 0; in FT_GlyphLoader_CheckPoints() local
242 adjust = 1; in FT_GlyphLoader_CheckPoints()
260 adjust = 1; in FT_GlyphLoader_CheckPoints()
264 if ( adjust ) in FT_GlyphLoader_CheckPoints()
/external/e2fsprogs/lib/ext2fs/
Dext_attr.c103 char *block_buf, int adjust, in ext2fs_adjust_ea_refcount() argument
126 header->h_refcount += adjust; in ext2fs_adjust_ea_refcount()
/external/llvm/test/CodeGen/XCore/
Dtrampoline.ll15 %tramp = call i8* @llvm.adjust.trampoline(i8* %TRAMP.23.sub)
37 declare i8* @llvm.adjust.trampoline(i8*) nounwind
/external/chromium_org/third_party/mesa/src/docs/
DMESA_resize_buffers.spec42 when a window size changes but would still like Mesa to adjust to
59 and adjust its internal data structures. This may include

1234567891011