Searched defs:advance (Results 1 - 25 of 85) sorted by relevance

1234

/external/tcpdump/
H A Dprint-ipcomp.c57 int advance; local
83 advance = sizeof(struct ipcomp);
86 return advance;
H A Dprint-ip6.c53 register int advance; local
111 advance = sizeof(struct ip6_hdr);
113 while (cp < snapend && advance > 0) {
114 cp += advance;
115 len -= advance;
126 advance = hbhopt_print(cp);
130 advance = dstopt_print(cp);
134 advance = frag6_print(cp, (const u_char *)ip6);
135 if (snapend <= cp + advance)
144 * XXX - we don't use "advance"; th
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DWeakRandom.h68 return advance() / (UINT_MAX + 1.0);
72 unsigned advance() function in class:JSC::WeakRandom
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DBaseCodeCursor.java58 protected final void advance(int amount) { method in class:BaseCodeCursor
/external/guava/guava-testlib/src/com/google/common/testing/
H A DFakeTicker.java41 public FakeTicker advance(long time, TimeUnit timeUnit) { method in class:FakeTicker
42 return advance(timeUnit.toNanos(time));
46 public FakeTicker advance(long nanoseconds) { method in class:FakeTicker
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntitySearch.cpp111 void HTMLEntitySearch::advance(UChar nextCharacter) function in class:WebCore::HTMLEntitySearch
/external/guava/guava/src/com/google/common/io/
H A DMultiInputStream.java44 advance();
60 private void advance() throws IOException { method in class:MultiInputStream
84 advance();
96 advance();
H A DMultiReader.java38 advance();
44 private void advance() throws IOException { method in class:MultiReader
57 advance();
71 advance();
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-nbody.js95 NBodySystem.prototype.advance = function(dt){
165 bodies.advance(0.01);
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-nbody.js95 NBodySystem.prototype.advance = function(dt){
165 bodies.advance(0.01);
/external/freetype/include/freetype/
H A Dftincrem.h103 * advance ::
104 * Horizontal component of glyph advance, in font units.
107 * Vertical component of glyph advance, in font units.
119 FT_Long advance; member in struct:FT_Incremental_MetricsRec_
H A Dftglyph.h97 /* advance width in 16.16 fixed float format. */
106 /* advance :: A 16.16 vector that gives the glyph's advance width. */
113 FT_Vector advance; member in struct:FT_GlyphRec_
285 /* advance vector. */
/external/icu4c/samples/layout/
H A DScriptCompositeFontInstance.cpp36 void ScriptCompositeFontInstance::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const
42 advance.fX = 0;
43 advance.fY = 0;
46 font->getGlyphAdvance(LE_GET_GLYPH(glyph), advance); local
/external/llvm/include/llvm/CodeGen/
H A DMachineInstrBundle.h80 // If the operands on InstrI are exhausted, advance InstrI to the next
82 void advance() { function in class:llvm::MachineOperandIteratorBase
84 // Don't advance off the basic block, or into a new bundle.
110 advance();
121 assert(isValid() && "Cannot advance MIOperands beyond the last operand");
123 advance();
H A DScoreboardHazardRecognizer.h75 void advance() { function in class:llvm::ScoreboardHazardRecognizer::Scoreboard
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DBitstreamReader.java55 advance();
88 private void advance() throws IOException { method in class:BitstreamReader
101 advance();
106 advance();
118 advance();
149 advance();
/external/openssh/openbsd-compat/
H A Dinet_ntop.c122 int advance; local
185 advance = snprintf(tp, ep - tp, "%x", words[i]);
186 if (advance <= 0 || advance >= ep - tp)
188 tp += advance;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DSimpleFontDataCGWin.cpp148 CGSize advance; local
153 wkGetGlyphAdvances(font, m, m_isSystemFont, isPrinterFont, glyph, advance);
155 return advance.width + m_syntheticBoldOffset;
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSState.java86 * or CANCELING_1, CANCELING_2, CANCELING_3, CANCELED Does not advance for ANNOUNCED and CANCELED state.
90 public final DNSState advance() { method in class:DNSState
/external/qemu/elff/
H A Ddwarf_die.cc39 return advance(NULL, &tag) != NULL ? tag : 0;
78 const Elf_Byte* die_attr = advance(&at_abbr, NULL);
196 const Elf_Byte* die_attr = advance(&at_abbr, &tag);
250 const Elf_Byte* DIEObject::advance(const Dwarf_Abbr_AT** at_abbr, function in class:DIEObject
/external/skia/src/core/
H A DSkAdvancedTypefaceMetrics.cpp129 // Assuming that on average, the ASCII representation of an advance plus
165 Data advance = kInvalidAdvance; local
171 SkAssertResult(getAdvance(fontHandle, gId, &advance));
174 advance = kDontCareAdvance;
177 if (advance == lastAdvance) {
180 } else if (advance == kDontCareAdvance) {
236 curRange->fAdvance.append(1, &advance);
237 if (advance != kDontCareAdvance) {
238 lastAdvance = advance;
/external/skia/src/effects/
H A DSk1DPathEffect.cpp31 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, argument
34 if (advance <= 0 || path.isEmpty()) {
35 SkDEBUGF(("SkPath1DPathEffect can't use advance <= 0\n"));
42 if (phase > advance) {
43 phase = SkScalarMod(phase, advance);
46 if (phase > advance) {
47 phase = SkScalarMod(phase, advance);
49 phase = advance - phase;
51 // now catch the edge case where phase == advance (within epsilon)
52 if (phase >= advance) {
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DGlyphBuffer.h157 CGSize advance = { width, 0 }; local
158 m_advances.append(advance);
176 void add(Glyph glyph, const SimpleFontData* font, GlyphBufferAdvance advance) argument
187 m_advances.append(advance);
H A DWidthIterator.cpp77 void WidthIterator::advance(int offset, GlyphBuffer* glyphBuffer) function in class:WebCore::WidthIterator
227 advance(m_currentCharacter + 1, glyphBuffer);
/external/webkit/Source/WebCore/platform/text/
H A DSegmentedString.cpp200 void SegmentedString::advance(unsigned count, UChar* consumedCharacters) function in class:WebCore::SegmentedString
205 advance();

Completed in 529 milliseconds

1234