/external/grub/netboot/ |
ns8390.c | 595 printf("\n%s base %#hx, memory %#hx, addr %!\n", 635 static unsigned short base[] = { local 641 for (idx = 0; (eth_nic_base = base[idx]) != 0; ++idx) { 653 /* Check our base address. iobase and membase should */ 690 if (base[idx] == 0) /* not found */ 711 printf("\n3Com 3c503 base %#hx, ", eth_nic_base); 759 static unsigned short base[] = { local 766 probe_addrs = base; 813 printf("\nNE%c000 base %#hx, addr %!\n",
|
/external/guava/guava/src/com/google/common/base/ |
Ascii.java | 17 package com.google.common.base;
|
Predicates.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkNotNull;
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Predicates.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkNotNull;
|
/external/guava/guava-tests/test/com/google/common/base/ |
OptionalTest.java | 17 package com.google.common.base;
|
PreconditionsTest.java | 17 package com.google.common.base;
|
ToStringHelperTest.java | 17 package com.google.common.base;
|
/external/icu4c/i18n/ |
windtfmt.cpp | 59 const char *base = locale->getBaseName(); local 60 UResourceBundle *topBundle = ures_open((char *) 0, base, &status);
|
/external/icu4c/tools/toolutil/ |
ucm.h | 102 UCMTable *base, *ext; member in struct:UCMFile 128 /* @return -1 illegal bytes 0 suitable for base table 1 needs to go into extension table */ 135 /* add a mapping to the base or extension table as appropriate */ 159 * Remove mappings with their move flag set from the base table 163 ucm_moveMappings(UCMTable *base, UCMTable *ext); 175 * Check the validity of mappings against a base table's states; 176 * necessary for extension-only tables that were read before their base tables. 182 * Check a base table against an extension table. 183 * Set the moveTarget!=NULL if it is possible to move mappings from the base. 184 * This is the case where base and extension tables are parsed from a single fil [all...] |
/external/ipsec-tools/src/racoon/ |
isakmp_xauth.h | 137 vchar_t *base; member in struct:xauth_ldap_config
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
BitmapCharacterSet.java | 43 private int base;
field in class:BitmapCharacterSet 54 oc.write(base, "base", 0);
91 base = ic.readInt("base", 0);
149 return base;
152 public void setBase(int base) {
153 this.base = base;
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
KernelAdapter.java | 33 package com.jme3.network.base;
|
/external/kernel-headers/original/asm-mips/ |
io.h | 72 static inline void set_io_port_base(unsigned long base) 74 * (unsigned long *) &mips_io_port_base = base; 182 u64 base = UNCAC_BASE; local 189 base = (u64) IO_BASE; 190 return (void __iomem *) (unsigned long) (base + offset);
|
/external/kernel-headers/original/asm-x86/ |
desc_32.h | 37 unsigned long base, unsigned long limit, unsigned char type, unsigned char flags) 39 *a = ((base & 0xffff) << 16) | (limit & 0xffff); 40 *b = (base & 0xff000000) | ((base & 0xff0000) >> 16) | 45 unsigned long base, unsigned short seg, unsigned char type, unsigned char flags) 47 *a = (seg << 16) | (base & 0xffff); 48 *b = (base & 0xffff0000) | ((type & 0xff) << 8) | (flags & 0xff); 212 unsigned long base; local 213 base = ((desc[0] >> 16) & 0x0000ffff) | 216 return base; [all...] |
/external/libvpx/vpx/ |
vpx_codec.h | 322 * They represent the base case functionality expected of all codecs. 490 void *base; /**< pointer to the allocated segment */ member in struct:vpx_codec_mmap 527 * allocation function \ref MUST ensure that the vpx_codec_mmap_t::base member 540 * Segment base address was not set, or segment was already stored.
|
vpx_decoder_compat.h | 213 * They represent the base case functionality expected of all decoders. 496 void *base; /**< pointer to the allocated segment */ member in struct:vpx_dec_mmap 560 * allocation function \ref MUST ensure that the vpx_dec_mmap_t::base member 573 * Segment base address was not set, or segment was already stored.
|
/external/libxml2/ |
entities.c | 882 const xmlChar * base, *cur; local 885 base = cur = content; 888 if (base != cur) 889 xmlBufferAdd(buf, base, cur - base); 892 base = cur; 894 if (base != cur) 895 xmlBufferAdd(buf, base, cur - base); 898 base = cur [all...] |
error.c | 175 const xmlChar *cur, *base; local 182 base = input->base; 184 while ((cur > base) && ((*(cur) == '\n') || (*(cur) == '\r'))) { 189 while ((n++ < (sizeof(content)-1)) && (cur > base) && 541 * of the usual "base" (doc->URL) for the node (bug 152623).
|
/external/libxslt/libxslt/ |
functions.c | 228 xmlChar *base = NULL, *URI; local 315 base = xmlNodeGetBase(target->doc, target); 321 base = xmlNodeGetBase(tctxt->inst->doc, tctxt->inst); 324 base = xmlNodeGetBase(tctxt->style->doc, 328 URI = xmlBuildURI(obj->stringval, base); 329 if (base != NULL) 330 xmlFree(base);
|
/external/linux-tools-perf/util/ |
evsel.c | 341 const void *base = event; local 343 if (offset + size > base + event->header.size)
|
/external/llvm/lib/Archive/ |
ArchiveWriter.cpp | 424 const char* base = arch->getBufferStart(); local 461 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
|
/external/llvm/lib/Target/Mips/ |
MipsCodeEmitter.cpp | 195 // Base register is encoded in bits 20-16, offset is encoded in bits 15-0. 283 unsigned base = getMachineOpValue(MI, MI.getOperand(1)); local 285 // swr src, offset(base) 286 // swl src, offset+3(base) 288 (0x2e << 26) | (base << 21) | (src << 16) | (offset & 0xffff)); 290 (0x2a << 26) | (base << 21) | (src << 16) | ((offset+3) & 0xffff)); 296 unsigned base = getMachineOpValue(MI, MI.getOperand(1)); local 299 if (dst != base) { 300 // lwr dst, offset(base) 301 // lwl dst, offset+3(base) 323 unsigned base = getMachineOpValue(MI, MI.getOperand(1)); local 340 unsigned base = getMachineOpValue(MI, MI.getOperand(1)); local 360 unsigned base = getMachineOpValue(MI, MI.getOperand(1)); local [all...] |
/external/openfst/src/include/fst/ |
mutable-fst.h | 171 MutableArcIteratorBase<A> *base; // Specific iterator member in struct:fst::MutableArcIteratorData 196 ~MutableArcIterator() { delete data_.base; } 198 bool Done() const { return data_.base->Done(); } 199 const Arc& Value() const { return data_.base->Value(); } 200 void Next() { data_.base->Next(); } 201 size_t Position() const { return data_.base->Position(); } 202 void Reset() { data_.base->Reset(); } 203 void Seek(size_t a) { data_.base->Seek(a); } 204 void SetValue(const Arc &a) { data_.base->SetValue(a); } 205 uint32 Flags() const { return data_.base->Flags(); [all...] |
/external/openssl/crypto/ec/ |
ec_mult.c | 768 EC_POINT *tmp_point = NULL, *base = NULL, **var; local 846 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group))) 852 if (!EC_POINT_copy(base, generator)) 860 if (!EC_POINT_dbl(group, tmp_point, base, ctx)) 863 if (!EC_POINT_copy(*var++, base)) 868 /* calculate odd multiples of the current base point */ 875 /* get the next base (multiply current one by 2^blocksize) */ 884 if (!EC_POINT_dbl(group, base, tmp_point, ctx)) 888 if (!EC_POINT_dbl(group,base,base,ctx) [all...] |
/external/protobuf/src/google/protobuf/ |
dynamic_message.cc | 533 void* base = operator new(size); local 534 memset(base, 0, size); 535 DynamicMessage* prototype = new(base) DynamicMessage(type_info);
|