HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 1926 - 1950 of 5191) sorted by null

<<71727374757677787980>>

  /external/svox/pico/lib/
picokpr.c 183 kpr->rStrArrLen = kpr_getUInt32(&(this->base[KPR_STRARRLEN_OFFSET]));
184 kpr->rLexCatArrLen = kpr_getUInt32(&(this->base[KPR_LEXCATARRLEN_OFFSET]));
185 kpr->rAttrValArrLen = kpr_getUInt32(&(this->base[KPR_ATTRVALARRLEN_OFFSET]));
186 kpr->rOutItemArrLen = kpr_getUInt32(&(this->base[KPR_OUTITEMARRLEN_OFFSET]));
187 kpr->rTokArrLen = kpr_getUInt32(&(this->base[KPR_TOKARRLEN_OFFSET]));
188 kpr->rProdArrLen = kpr_getUInt32(&(this->base[KPR_PRODARRLEN_OFFSET]));
189 kpr->rCtxArrLen = kpr_getUInt32(&(this->base[KPR_CTXARRLEN_OFFSET]));
192 kpr->rStrArr = &(this->base[offset]);
196 kpr->rLexCatArr = (picokpr_LexCat2 *)&(this->base[offset]);
200 kpr->rAttrValArr = (picokpr_AttrVal *)&(this->base[offset])
    [all...]
  /external/bluetooth/glib/glib/
gutils.c 705 register gchar *base; local
709 base = strrchr (file_name, G_DIR_SEPARATOR);
714 if (base == NULL || (q != NULL && q > base))
715 base = q;
719 if (base)
720 return base + 1;
746 register gssize base; local
772 base = last_nonslash;
774 while (base >=0 && !G_IS_DIR_SEPARATOR (file_name [base])
897 register gchar *base; local
    [all...]
  /external/chromium/chrome/browser/
browser_about_handler.cc 11 #include "base/callback.h"
12 #include "base/command_line.h"
13 #include "base/file_util.h"
14 #include "base/i18n/number_formatting.h"
15 #include "base/json/json_writer.h"
16 #include "base/memory/singleton.h"
17 #include "base/metrics/histogram.h"
18 #include "base/metrics/stats_table.h"
19 #include "base/path_service.h"
20 #include "base/string_number_conversions.h
    [all...]
  /external/mksh/src/
var.c 36 * if (flag&INTEGER), val.i contains integer value, and type contains base.
349 int base; local
351 * worst case number length is when base == 2:
352 * 1 (minus) + 2 (base, up to 36) + 1 ('#') +
364 base = (vp->type == 0) ? 10 : vp->type;
366 if (base == 1 && n == 0)
367 base = 2;
368 if (base == 1) {
382 *--s = digits[n % base];
383 n /= base;
473 int c, base, neg; local
554 int base; local
    [all...]
  /external/libsepol/src/
link.c 49 /* a pointer to within the base module's avrule_block chain to
56 policydb_t *base; member in struct:link_state
107 /***** functions that copy identifiers from a module to base *****/
112 * a) perm is required and the class _and_ perm are declared in base: only add a mapping.
113 * b) perm is required and the class and perm are _not_ declared in base: simply add the permissions
116 * c) perm is required, the class is declared in base, but the perm is not present. Nothing we can do
145 /* If the object class was not declared in the base, add the perm
220 new_class = hashtab_search(state->base->p_classes.table, id);
221 /* If there is not an object class already in the base symtab that means
224 * not in the base
    [all...]
module.c 218 /* Append each of the file contexts from each module to the base
221 * variable). 'base_fc_len' is the length of base's file context; it
224 static int link_file_contexts(sepol_module_package_t * base,
232 fc_len = base->file_contexts_len;
237 if ((s = (char *)realloc(base->file_contexts, fc_len)) == NULL) {
240 base->file_contexts = s;
242 memcpy(base->file_contexts + base->file_contexts_len,
245 base->file_contexts_len += modules[i]->file_contexts_len;
250 /* Append each of the netfilter contexts from each module to the base
    [all...]
  /external/valgrind/main/memcheck/
mc_main.c 330 /* # searches initiated in auxmap_L1, and # base cmps required */
373 /* An entry in the auxiliary primary map. base must be a 64k-aligned
381 Addr base; member in struct:__anon14282
394 Addr base; member in struct:__anon14283
405 auxmap_L1[i].base = 0;
409 tl_assert(0 == offsetof(AuxMapEnt,base));
411 auxmap_L2 = VG_(OSetGen_Create)( /*keyOff*/ offsetof(AuxMapEnt,base),
429 all .base & 0xFFFF == 0
430 all .base > MAX_PRIMARY_ADDRESS
432 all .base & 0xFFFF ==
    [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/chromium/base/win/
pe_image.cc 8 #include "base/win/pe_image.h"
10 namespace base { namespace
15 #error This code is not tested on x64. Please make sure all the base unit tests\
164 return functions + ordinal - exports->Base;
233 *ordinal = ordinals[lower - names] + static_cast<WORD>(exports->Base);
265 UINT ordinal_base = exports->Base;
312 PIMAGE_BASE_RELOCATION base = reinterpret_cast<PIMAGE_BASE_RELOCATION>( local
318 while (base->SizeOfBlock) {
319 PWORD reloc = reinterpret_cast<PWORD>(base + 1);
320 UINT num_relocs = (base->SizeOfBlock - sizeof(IMAGE_BASE_RELOCATION))
    [all...]
  /external/chromium/chrome/browser/ui/views/
select_file_dialog.cc 7 #include "base/callback.h"
8 #include "base/file_path.h"
9 #include "base/json/json_reader.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/string_util.h"
12 #include "base/sys_string_conversions.h"
13 #include "base/utf_string_conversions.h"
14 #include "base/values.h"
25 #include "ui/base/l10n/l10n_util.h"
254 scoped_ptr<Value> value(base::JSONReader::Read(json, false))
    [all...]
  /external/chromium/net/base/
sdch_manager.cc 5 #include "net/base/sdch_manager.h"
7 #include "base/base64.h"
8 #include "base/logging.h"
9 #include "base/metrics/histogram.h"
10 #include "base/string_number_conversions.h"
11 #include "base/string_util.h"
13 #include "net/base/registry_controlled_domain.h"
35 const base::Time& expiration,
72 if (base::Time::Now() > expiration_)
376 base::Time expiration(base::Time::Now() + base::TimeDelta::FromDays(30))
    [all...]
  /external/chromium/net/proxy/
multi_threaded_proxy_resolver.cc 7 #include "base/message_loop.h"
8 #include "base/string_util.h"
9 #include "base/stringprintf.h"
10 #include "base/threading/thread.h"
11 #include "base/threading/thread_restrictions.h"
12 #include "net/base/net_errors.h"
13 #include "net/base/net_log.h"
24 class PurgeMemoryTask : public base::RefCountedThreadSafe<PurgeMemoryTask> {
29 friend class base::RefCountedThreadSafe<PurgeMemoryTask>;
40 : public base::RefCountedThreadSafe<MultiThreadedProxyResolver::Executor >
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 861 gray_split_conic( FT_Vector* base )
866 base[4].x = base[2].x;
867 b = base[1].x;
868 a = base[3].x = ( base[2].x + b ) / 2;
869 b = base[1].x = ( base[0].x + b ) / 2;
870 base[2].x = ( a + b ) / 2;
872 base[4].y = base[2].y
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMaker.java 17 import static com.google.common.base.Objects.firstNonNull;
18 import static com.google.common.base.Preconditions.checkArgument;
19 import static com.google.common.base.Preconditions.checkNotNull;
20 import static com.google.common.base.Preconditions.checkState;
24 import com.google.common.base.Ascii;
25 import com.google.common.base.Equivalence;
26 import com.google.common.base.Equivalences;
27 import com.google.common.base.Function;
28 import com.google.common.base.Objects;
29 import com.google.common.base.Ticker
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridAlphaMapTest.java 59 private FractalSum base; field in class:TerrainGridAlphaMapTest
118 this.base = new FractalSum();
119 this.base.setRoughness(0.7f);
120 this.base.setFrequency(1.0f);
121 this.base.setAmplitude(1.0f);
122 this.base.setLacunarity(2.12f);
123 this.base.setOctaves(8);
124 this.base.setScale(0.02125f);
125 this.base.addModulator(new NoiseModulator() {
133 FilteredBasis ground = new FilteredBasis(this.base);
    [all...]
  /external/stlport/src/details/
fstream_win32io.cpp 585 void* base; local
601 base = MapViewOfFile(_M_view_id, FILE_MAP_READ, li.HighPart, li.LowPart,
608 if (base == 0 || _M_seek(offset + len, ios_base::beg) < 0) {
609 this->_M_unmap(base, len);
610 base = 0;
613 base = 0;
615 return base;
618 void _Filebuf_base::_M_unmap(void* base, streamoff len) {
620 if (base != NULL)
621 UnmapViewOfFile(base);
    [all...]
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_win32io.cpp 585 void* base; local
601 base = MapViewOfFile(_M_view_id, FILE_MAP_READ, li.HighPart, li.LowPart,
608 if (base == 0 || _M_seek(offset + len, ios_base::beg) < 0) {
609 this->_M_unmap(base, len);
610 base = 0;
613 base = 0;
615 return base;
618 void _Filebuf_base::_M_unmap(void* base, streamoff len) {
620 if (base != NULL)
621 UnmapViewOfFile(base);
    [all...]
  /external/libxml2/
xinclude.c 84 xmlChar * base; /* the current xml:base */ member in struct:_xmlXIncludeCtxt
405 if (ctxt->base != NULL) {
406 xmlFree(ctxt->base);
494 xmlChar *base; local
539 base = xmlNodeGetBase(ctxt->doc, cur);
540 if (base == NULL) {
543 URI = xmlBuildURI(href, base);
551 escbase = xmlURIEscape(base);
563 if (base != NULL
1691 xmlChar *base; local
2001 xmlChar *base; local
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_x_unittest.cc 5 #include "base/basictypes.h"
6 #include "base/memory/scoped_temp_dir.h"
7 #include "base/stl_util-inl.h"
8 #include "base/string_util.h"
9 #include "base/synchronization/waitable_event.h"
10 #include "base/time.h"
23 using base::WaitableEvent;
52 : public base::RefCountedThreadSafe<DBThreadObserverHelper,
76 friend class base::RefCountedThreadSafe<DBThreadObserverHelper>;
99 virtual bool RemoveLoginsCreatedBetween(const base::Time& delete_begin
    [all...]
  /external/chromium/chrome/browser/ui/webui/
bug_report_ui.cc 11 #include "base/callback.h"
12 #include "base/logging.h"
13 #include "base/memory/singleton.h"
14 #include "base/memory/weak_ptr.h"
15 #include "base/message_loop.h"
16 #include "base/string_number_conversions.h"
17 #include "base/string_piece.h"
18 #include "base/utf_string_conversions.h"
19 #include "base/values.h"
37 #include "ui/base/l10n/l10n_util.h
    [all...]
  /external/chromium/chrome/browser/visitedlink/
visitedlink_unittest.cc 9 #include "base/message_loop.h"
10 #include "base/file_util.h"
11 #include "base/path_service.h"
12 #include "base/process_util.h"
13 #include "base/shared_memory.h"
14 #include "base/string_util.h"
48 virtual void NewTable(base::SharedMemory* table) {
52 base::SharedMemoryHandle new_handle = base::SharedMemory::NULLHandle();
53 table->ShareToProcess(base::GetCurrentProcessHandle(), &new_handle)
    [all...]
  /external/chromium/chrome/common/extensions/
extension_manifests_unittest.cc 5 #include "base/command_line.h"
6 #include "base/file_path.h"
7 #include "base/file_util.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/path_service.h"
10 #include "base/string_number_conversions.h"
11 #include "base/string_util.h"
12 #include "base/utf_string_conversions.h"
166 base::IntToString(0),
173 base::IntToString(0)
    [all...]
  /external/chromium/net/socket/
tcp_client_socket_win.cc 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h"
11 #include "base/memory/memory_debug.h"
12 #include "base/metrics/stats_counters.h"
13 #include "base/string_util.h"
14 #include "base/sys_info.h"
15 #include "base/win/object_watcher.h"
16 #include "net/base/address_list_net_log_param.h"
17 #include "net/base/connection_type_histograms.h"
18 #include "net/base/io_buffer.h
    [all...]
  /external/grub/
depcomp 287 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
291 # With libtool 1.5 they are output both in $dir.libs/$base.o.d
292 # and in $dir.libs/$base.o.d and $dir$base.o.d. We process the
295 tmpdepfile1="$dir.libs/$base.lo.d"
296 tmpdepfile2="$dir$base.o.d"
297 tmpdepfile3="$dir.libs/$base.d"
300 tmpdepfile1="$dir$base.o.d"
301 tmpdepfile2="$dir$base.d"
302 tmpdepfile3="$dir$base.d
    [all...]
  /external/icu4c/i18n/
tzrule.cpp 159 InitialTimeZoneRule::getNextStart(UDate /*base*/,
168 InitialTimeZoneRule::getPreviousStart(UDate /*base*/,
351 AnnualTimeZoneRule::getNextStart(UDate base,
357 Grego::timeToFields(base, year, month, dom, dow, doy, mid);
363 if (tmp < base || (!inclusive && (tmp == base))) {
375 AnnualTimeZoneRule::getPreviousStart(UDate base,
381 Grego::timeToFields(base, year, month, dom, dow, doy, mid);
387 if (tmp > base || (!inclusive && (tmp == base))) {
    [all...]

Completed in 1306 milliseconds

<<71727374757677787980>>