HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 726 - 750 of 1449) sorted by null

<<21222324252627282930>>

  /bionic/libc/stdio/
vfscanf.c 112 int base; /* base argument to strtoimax/strtouimax */ local
125 base = 0; /* XXX just to keep gcc happy */
216 base = 10;
221 base = 0;
230 base = 8;
236 base = 10;
244 base = 16;
276 base = 16;
311 base = 10
    [all...]
  /bionic/libc/tzcode/
strftime.c 464 int base; local
470 base = TM_YEAR_BASE;
478 len = isleap_sum(year, base) ?
497 ++base;
506 --base;
507 yday += isleap_sum(year, base) ?
528 pt = _yconv(year, base, 0, 1,
530 } else pt = _yconv(year, base, 1, 1,
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 166 Prototype base = intern(descriptor); local
169 return base;
176 return base.withFirstParameter(definer);
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 170 Prototype base = intern(descriptor); local
173 return base;
180 return base.withFirstParameter(definer);
  /device/samsung/crespo/include/
s5p_fimc.h 85 dma_addr_t base[3]; member in struct:fimc_buf
122 unsigned int buf_addr_phy_rgb_y; // Base Address of the Source Image (RGB or Y): Physical Address
123 unsigned int buf_addr_phy_cb; // Base Address of the Source Image (CB Component) : Physical Address
124 unsigned int buf_addr_phy_cr; // Base Address of the Source Image (CR Component) : Physical Address
  /device/samsung/crespo/libhwcomposer/
SecHWCUtils.h 67 uint32_t base; member in struct:sec_img
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.cpp 545 FIXP_DBL base, exp, tmp; local
550 base = fDivNorm((FIXP_DBL)stop, (FIXP_DBL)start, &qb);
552 tmp = fPow(base, qb, exp, qe, &qtmp);
  /external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerModPowTest.java 106 BigInteger[] base = new BigInteger[] {new BigInteger("-1"), new BigInteger("0"), new BigInteger("1")}; local
109 for (int i = 0; i < base.length; ++i) {
111 assertEquals(base[i] + " modePow(" + exp + ", " + mod[j]
113 base[i].modPow(exp, mod[j]));
118 for (int i = 0; i < base.length; ++i) {
120 assertEquals(base[i] + " modePow(" + exp + ", " + mod[j]
122 base[i].modPow(exp, mod[j]));
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorInclude.java 57 * The base URL of the XSL document.
63 * Get the base identifier with which this stylesheet is associated.
74 * Get the base identifier with which this stylesheet is associated.
200 // The base identifier, an aboslute URI
204 // base ID onto the stack.
355 String base = handler.getBaseIdentifier(); local
356 s = uriresolver.resolve(href,base);
363 * Get the base URI of the included or imported stylesheet,
367 * using the SysteIDResolver to figure out the base URI.
382 // and the system ID is set on it, so return that as the base UR
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncDocument.java 81 String base = ""; local
87 // The URI reference may be relative. The base URI (see [3.2 Base URI])
89 // order is used as the base URI for resolving the
107 base = baseDTM.getDocumentBaseURI();
116 // // base = ((Stylesheet)baseDoc).getBaseIdentifier();
117 // base = xctxt.getNamespaceContext().getBaseIdentifier();
120 // base = xctxt.getSourceTreeManager().findURIFromDoc(baseDoc);
141 base = xctxt.getNamespaceContext().getBaseIdentifier();
155 // The first and only argument was a nodeset, the base in tha
    [all...]
  /external/astl/src/
string.cpp 537 char *base = iter.base(); local
539 if (base < mData || base > mData + mLength || new_len < mLength) {
543 const size_type pos = base - mData;
550 // At this point 'iter' and 'base' are not valid anymore since
552 base = mData + pos;
553 std::memmove(base + 1, base, mLength - pos);
554 *base = c
    [all...]
  /external/bluetooth/glib/glib/gnulib/
vasnprintf.c 92 int base; local
114 base = 8;
119 base = 16;
124 base = 16;
129 base = 10;
142 *pointer-- = digits[number % base];
143 number /= base;
165 switch (base)
203 switch (base)
214 } /* switch base */
    [all...]
  /external/chromium/base/
basictypes.h 13 #include "base/port.h" // Types that only need exist on certain systems
89 // NOTE: The usage of this macro was baned from our code base, but some
354 // the base::LINKER_INITIALIZED argument. Normally, it is unsafe to declare a
360 // explicit MyClass(base::LinkerInitialized x) {}
362 // static MyClass my_variable_name(base::LINKER_INITIALIZED);
363 namespace base { namespace
365 } // base
bind_internal.h 15 #include "base/bind_helpers.h"
16 #include "base/callback_internal.h"
17 #include "base/template_util.h"
21 #include "base/bind_internal_win.h"
24 namespace base { namespace
385 static R DoInvoke(InvokerStorageBase* base) {
386 StorageType* invoker = static_cast<StorageType*>(base);
394 static R DoInvoke(InvokerStorageBase* base,
396 StorageType* invoker = static_cast<StorageType*>(base);
404 static R DoInvoke(InvokerStorageBase* base,
    [all...]