Searched defs:base (Results 1 - 25 of 5037) sorted by path

1234567891011>>

/external/aac/libSBRenc/src/
H A Dsbrenc_freq_sca.cpp564 FIXP_DBL base, exp, tmp; local
569 base = fDivNorm((FIXP_DBL)stop, (FIXP_DBL)start, &qb);
571 tmp = fPow(base, qb, exp, qe, &qtmp);
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jar ... jdom/ org/jaxen/pattern/ org/jaxen/saxpath/ org/jaxen/saxpath/base/ org/jaxen/saxpath/helpers/ org/jaxen/util/ org/jaxen/xom ...
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java740 // <code>num</code> is interpreted as a number with a base of
741 // <code>base</code> and each digit of this number is stored as a
745 // @param base
748 private static boolean inc(int[] num, int base) { argument
750 if ((++num[i]) >= base) {
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DFuncDocument.java81 String base = "";
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 that
156 // case is the base UR
226 getDoc(XPathContext xctxt, int context, String uri, String base) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java122 /** The base URL of the source tree. */
547 String base = source.getSystemId();
549 // If no systemID of the source, use the base of the stylesheet.
550 if(null == base)
552 base = m_stylesheetRoot.getBaseIdentifier();
556 if(null == base)
565 base = "file://" + currentDir;
567 base = "file:///" + currentDir;
569 base = base
698 setBaseURLOfSource(String base) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DSystemIDResolver.java276 * @param base The URI string used as the base for resolving the systemID
281 public static String getAbsoluteURI(String urlString, String base) argument
284 if (base == null)
287 String absoluteBase = getAbsoluteURI(base);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSystemIDResolver.java269 * @param base The URI string used as the base for resolving the systemID
274 public static String getAbsoluteURI(String urlString, String base) argument
277 if (base == null)
280 String absoluteBase = getAbsoluteURI(base);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTreeManager.java88 * @return The base URI of the owner argument.
109 * @param base The base URI that should be used.
119 String base, String urlString, SourceLocator locator)
127 source = m_uriResolver.resolve(urlString, base);
132 String uri = SystemIDResolver.getAbsoluteURI(urlString, base);
226 * Get the source tree from the a base URL and a URL string.
228 * @param base The base URI to use if the urlString is relative.
233 * base an
118 resolveURI( String base, String urlString, SourceLocator locator) argument
237 getSourceTree( String base, String urlString, SourceLocator locator, XPathContext xctxt) argument
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A DPrint.cpp58 void Print::print(char c, int base) argument
60 print((long) c, base);
63 void Print::print(unsigned char b, int base) argument
65 print((unsigned long) b, base);
68 void Print::print(int n, int base) argument
70 print((long) n, base);
73 void Print::print(unsigned int n, int base) argument
75 print((unsigned long) n, base);
78 void Print::print(long n, int base) argument
80 if (base
93 print(unsigned long n, int base) argument
122 println(char c, int base) argument
128 println(unsigned char b, int base) argument
134 println(int n, int base) argument
140 println(unsigned int n, int base) argument
146 println(long n, int base) argument
152 println(unsigned long n, int base) argument
166 printNumber(unsigned long n, uint8_t base) argument
[all...]
/external/bison/examples/calc++/
H A Dcalc++-scanner.cc372 YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
1736 * @param base the character buffer
1741 YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) argument
1746 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1747 base[size-1] != YY_END_OF_BUFFER_CHAR )
1756 b->yy_buf_pos = b->yy_ch_buf = base;
/external/bison/lib/
H A Dbasename-lgpl.c32 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); local
36 while (ISSLASH (*base))
37 base++;
39 for (p = base; *p; p++)
45 base = p;
50 return (char *) base;
H A Dbasename.c30 char const *base = last_component (name); local
35 if (! *base)
39 length = base_len (base);
40 if (ISSLASH (base[length]))
46 if (FILE_SYSTEM_PREFIX_LEN (base))
51 memcpy (p + 2, base, length);
57 return xstrndup (base, length);
H A Dlocalcharset.c127 const char *base = "charset.alias"; local
136 /* Concatenate dir and base into freshly allocated file_name. */
139 size_t base_len = strlen (base);
147 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
H A Dobstack_printf.c62 char *base = obstack_next_free (obs); local
68 base = buf;
71 str = vasnprintf (base, &len, format, args);
78 if (str == base && str != buf)
H A Dprogname.c47 const char *base; local
60 base = (slash != NULL ? slash + 1 : argv0);
61 if (base - argv0 >= 7 && strncmp (base - 7, "/.libs/", 7) == 0)
63 argv0 = base;
64 if (strncmp (base, "lt-", 3) == 0)
66 argv0 = base + 3;
H A Dstripslash.c33 char *base = last_component (file); local
39 if (! *base)
40 base = file;
41 base_lim = base + base_len (base);
H A Dstrtol.c230 /* Convert NPTR to an 'unsigned long int' or 'long int' in base BASE.
231 If BASE is 0 the base is determined by the presence of a leading
239 int base, int group LOCALE_PARAM_PROTO)
281 if (base < 0 || base == 1 || base > 36)
312 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X'))
315 base = 16;
317 else if (base
238 strtol(const STRING_TYPE *nptr, STRING_TYPE **endptr, int base, int group LOCALE_PARAM_PROTO) argument
[all...]
/external/bison/src/
H A Dfiles.c207 const char **base, const char **tab, const char **ext)
209 *base = last_component (file_name);
212 *ext = mbsrchr (*base, '.');
219 size_t baselen = *ext - *base;
232 const char *base, *tab, *ext;
241 file_name_split (spec_outfile, &base, &tab, &ext);
242 dir_prefix = xstrndup (spec_outfile, base - spec_outfile);
260 file_name_split (grammar_file, &base, &tab, &ext);
282 xstrndup (base, (strlen (base)
204 file_name_split(const char *file_name, const char **base, const char **tab, const char **ext) argument
230 const char *base, *tab, *ext; local
[all...]
H A Dscan-code.c391 YY_BUFFER_STATE code__scan_buffer (char *base,yy_size_t size );
2157 * @param base the character buffer
2162 YY_BUFFER_STATE code__scan_buffer (char * base, yy_size_t size ) argument
2167 base[size-2] != YY_END_OF_BUFFER_CHAR ||
2168 base[size-1] != YY_END_OF_BUFFER_CHAR )
2177 b->yy_buf_pos = b->yy_ch_buf = base;
H A Dscan-gram.c391 YY_BUFFER_STATE gram__scan_buffer (char *base,yy_size_t size );
1023 static unsigned long int scan_integer (char const *p, int base, location loc);
3195 * @param base the character buffer
3200 YY_BUFFER_STATE gram__scan_buffer (char * base, yy_size_t size ) argument
3205 base[size-2] != YY_END_OF_BUFFER_CHAR ||
3206 base[size-1] != YY_END_OF_BUFFER_CHAR )
3215 b->yy_buf_pos = b->yy_ch_buf = base;
3572 | Scan NUMBER for a base-BASE integer at location LOC. |
3576 scan_integer (char const *number, int base, location loc) argument
3579 unsigned long int num = strtoul (number, NULL, base);
[all...]
H A Dscan-skel.c391 YY_BUFFER_STATE skel__scan_buffer (char *base,yy_size_t size );
1944 * @param base the character buffer
1949 YY_BUFFER_STATE skel__scan_buffer (char * base, yy_size_t size ) argument
1954 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1955 base[size-1] != YY_END_OF_BUFFER_CHAR )
1964 b->yy_buf_pos = b->yy_ch_buf = base;
H A Dtables.c108 base_number *base = NULL; variable
765 base = xnmalloc (nvectors, sizeof *base);
775 base[i] = BASE_MINIMUM;
790 place = base[s];
793 base[order[i]] = place;
797 base_ninf = table_ninf_remap (base, nvectors, BASE_MINIMUM);
865 free (base);
/external/blktrace/btt/
H A Dbtt_plot.py386 base = get_base(file) variable
387 title_str = 'Block Numbers Accessed: %s' % base
388 output_file = 'bnos_%s.png' % base
H A Doutput.c797 void __output_ranges(FILE *ofp, struct list_head *head_p, float base) argument
801 float limit = base + 0.4;
805 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->start), base);
808 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->end), base);
813 float base)
819 __output_ranges(ofp, &reg->qranges, base);
823 __output_ranges(ofp, &reg->cranges, base + 0.5);
831 float base; member in struct:__od
839 if (output_regions(odp->ofp, header, &dip->regions, odp->base))
840 odp->base
812 output_regions(FILE *ofp, char *header, struct region_info *reg, float base) argument
843 output_devs(FILE *ofp, float base) argument
859 float base; member in struct:__op
868 output_procs(FILE *ofp, float base) argument
879 float base = 0.0; local
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_hl.h118 tBTA_HL_MDL_CFG base; member in struct:__anon1024

Completed in 536 milliseconds

1234567891011>>