HomeSort by relevance Sort by last modified time
    Searched full:base (Results 1126 - 1150 of 40563) sorted by null

<<41424344454647484950>>

  /external/libmojo/mojo/edk/system/ports/
BUILD.gn 27 "//base",
40 "//base",
41 "//base/test:test_support",
  /external/libmojo/mojo/public/cpp/system/
platform_handle.h 16 #include "base/compiler_specific.h"
17 #include "base/files/file.h"
18 #include "base/logging.h"
19 #include "base/macros.h"
20 #include "base/memory/shared_memory_handle.h"
21 #include "base/process/process_handle.h"
53 ScopedHandle WrapPlatformFile(base::PlatformFile platform_file);
56 MojoResult UnwrapPlatformFile(ScopedHandle handle, base::PlatformFile* file);
58 // Wraps a base::SharedMemoryHandle as a Mojo handle. Takes ownership of the
63 const base::SharedMemoryHandle& memory_handle
    [all...]
  /external/libxml2/test/relaxng/
tutor8_2_2.xml 10 <base>base</base>
  /external/libxml2/test/schemas/
cos-st-restricts-1-2-err_0.xsd 16 <!--restriction base="foo:type.base.A">
20 <simpleType name="type.base.A">
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_winsys.c 48 isws->base.destroy = i915_sw_destroy;
50 isws->base.pci_id = deviceID;
55 return &isws->base;
  /external/pdfium/core/fxge/dib/
dib_int.h 22 base = 1 << bits;
23 a = FXSYS_round(src.a * base);
24 b = FXSYS_round(src.b * base);
25 c = FXSYS_round(src.c * base);
26 d = FXSYS_round(src.d * base);
27 e = FXSYS_round(src.e * base);
28 f = FXSYS_round(src.f * base);
31 x1 = (a * x + c * y + e + base / 2) / base;
32 y1 = (b * x + d * y + f + base / 2) / base
35 int base; member in class:CPDF_FixedMatrix
    [all...]
  /external/skia/src/core/
SkTSearch.cpp 15 static inline const char* index_into_base(const char*const* base, int index,
18 return *(const char*const*)((const char*)base + index * elemSize);
21 int SkStrSearch(const char*const* base, int count, const char target[],
27 SkASSERT(base != nullptr);
35 const char* elem = index_into_base(base, mid, elemSize);
46 const char* elem = index_into_base(base, hi, elemSize);
57 int SkStrSearch(const char*const* base, int count, const char target[],
60 return SkStrSearch(base, count, target, strlen(target), elemSize);
63 int SkStrLCSearch(const char*const* base, int count, const char target[],
70 return SkStrSearch(base, count, tolc.lc(), len, elemSize)
    [all...]
  /external/syslinux/gpxe/src/arch/i386/include/
basemem.h 6 * Base memory allocation
17 * Read the BIOS free base memory counter
19 * @ret fbms Free base memory counter (in kB)
  /hardware/qcom/display/msm8960/libtilerenderer/
Android.mk 10 frameworks/base/include/utils \
11 frameworks/base/libs/hwui \
18 frameworks/base/opengl/include/GLES2
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DocumentStackAsserts.java 5 import com.android.documentsui.base.DocumentInfo;
6 import com.android.documentsui.base.DocumentStack;
7 import com.android.documentsui.base.RootInfo;
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/mime/
nonmultipart.py 5 """Base class for MIME type messages that are not multipart."""
10 from email.mime.base import MIMEBase
16 """Base class for MIME multipart/* type messages."""
  /prebuilts/gdb/linux-x86/lib/python2.7/email/mime/
nonmultipart.py 5 """Base class for MIME type messages that are not multipart."""
10 from email.mime.base import MIMEBase
16 """Base class for MIME multipart/* type messages."""
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue12108.go 15 type Base struct {
18 func (b *Base) Method() (x [N]uintptr) {
23 Base
  /prebuilts/go/linux-x86/test/fixedbugs/
issue12108.go 15 type Base struct {
18 func (b *Base) Method() (x [N]uintptr) {
23 Base
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
nonmultipart.py 5 """Base class for MIME type messages that are not multipart."""
10 from email.mime.base import MIMEBase
16 """Base class for MIME multipart/* type messages."""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
nonmultipart.py 5 """Base class for MIME type messages that are not multipart."""
10 from email.mime.base import MIMEBase
16 """Base class for MIME multipart/* type messages."""
  /system/tpm/tpm_manager/client/
tpm_ownership_binder_proxy.cc 19 #include <base/bind.h>
20 #include <base/callback.h>
21 #include <base/logging.h>
67 base::Bind(&ITpmOwnership::GetTpmStatus, base::Unretained(binder_));
68 auto get_error = base::Bind(&CreateErrorResponse<GetTpmStatusReply>);
78 base::Bind(&ITpmOwnership::TakeOwnership, base::Unretained(binder_));
79 auto get_error = base::Bind(&CreateErrorResponse<TakeOwnershipReply>);
88 auto method = base::Bind(&ITpmOwnership::RemoveOwnerDependency
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
adler32.c 14 #define BASE 65521 /* largest prime smaller than 65536 */
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
    [all...]
  /external/libmojo/mojo/edk/test/
multiprocess_test_helper.cc 11 #include "base/base_switches.h"
12 #include "base/bind.h"
13 #include "base/command_line.h"
14 #include "base/files/file_path.h"
15 #include "base/logging.h"
16 #include "base/memory/ref_counted.h"
17 #include "base/process/kill.h"
18 #include "base/process/process_handle.h"
19 #include "base/run_loop.h"
20 #include "base/strings/stringprintf.h
    [all...]
  /external/mesa3d/src/gallium/drivers/identity/
id_objects.c 52 memcpy(&id_resource->base, resource, sizeof(struct pipe_resource));
54 pipe_reference_init(&id_resource->base.reference, 1);
55 id_resource->base.screen = &id_screen->base;
58 return &id_resource->base;
89 memcpy(&id_surface->base, surface, sizeof(struct pipe_surface));
91 pipe_reference_init(&id_surface->base.reference, 1);
92 id_surface->base.texture = NULL;
93 pipe_resource_reference(&id_surface->base.texture, &id_resource->base);
    [all...]
  /external/pdfium/third_party/zlib_v128/
adler32.c 14 #define BASE 65521 /* largest prime smaller than 65536 */
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
    [all...]
  /external/v8/src/compiler-dispatcher/
compiler-dispatcher-tracer.cc 16 static_cast<double>(base::Time::kMillisecondsPerSecond);
91 base::LockGuard<base::Mutex> lock(&mutex_);
97 base::LockGuard<base::Mutex> lock(&mutex_);
102 base::LockGuard<base::Mutex> lock(&mutex_);
107 base::LockGuard<base::Mutex> lock(&mutex_);
113 base::LockGuard<base::Mutex> lock(&mutex_)
    [all...]
  /external/zlib/src/
adler32.c 14 #define BASE 65521 /* largest prime smaller than 65536 */
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
    [all...]
  /hardware/qcom/display/msm8960/libgralloc/
ionalloc.cpp 72 void *base = 0; local
103 base = mmap(0, ionAllocData.len, PROT_READ|PROT_WRITE,
105 if(base == MAP_FAILED) {
112 memset(base, 0, ionAllocData.len);
114 clean_buffer(base, data.size, data.offset, fd_data.fd,
118 data.base = base;
121 ALOGD_IF(DEBUG, "ion: Allocated buffer base:%p size:%d fd:%d",
122 data.base, ionAllocData.len, data.fd);
127 int IonAlloc::free_buffer(void* base, size_t size, int offset, int fd
146 void *base = 0; local
    [all...]
  /prebuilts/go/darwin-x86/src/strconv/
itoa.go 7 // FormatUint returns the string representation of i in the given base,
8 // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
10 func FormatUint(i uint64, base int) string {
11 _, s := formatBits(nil, i, base, false, false)
15 // FormatInt returns the string representation of i in the given base,
16 // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
18 func FormatInt(i int64, base int) string {
19 _, s := formatBits(nil, uint64(i), base, i < 0, false)
30 func AppendInt(dst []byte, i int64, base int) []byte {
31 dst, _ = formatBits(dst, uint64(i), base, i < 0, true
    [all...]

Completed in 900 milliseconds

<<41424344454647484950>>