Searched refs:base (Results 76 - 100 of 3637) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_texture.c53 memcpy(&tr_res->base, texture, sizeof(struct pipe_resource));
55 pipe_reference_init(&tr_res->base.reference, 1);
56 tr_res->base.screen = &tr_scr->base;
59 return &tr_res->base;
91 memcpy(&tr_surf->base, surface, sizeof(struct pipe_surface));
93 pipe_reference_init(&tr_surf->base.reference, 1);
94 tr_surf->base.texture = NULL;
95 pipe_resource_reference(&tr_surf->base.texture, &tr_res->base);
[all...]
/external/v8/src/heap/
H A Dsweeper-thread.h8 #include "src/base/atomicops.h"
9 #include "src/base/platform/platform.h"
20 class SweeperThread : public base::Thread {
37 base::Semaphore start_sweeping_semaphore_;
38 base::Semaphore end_sweeping_semaphore_;
39 base::Semaphore stop_semaphore_;
40 volatile base::AtomicWord stop_thread_;
/external/guava/guava-gwt/test/com/google/common/base/
H A DUtf8Test_gwt.java16 package com.google.common.base;
19 return "com.google.common.base.testModule";
22 com.google.common.base.Utf8Test testCase = new com.google.common.base.Utf8Test();
27 com.google.common.base.Utf8Test testCase = new com.google.common.base.Utf8Test();
32 com.google.common.base.Utf8Test testCase = new com.google.common.base.Utf8Test();
37 com.google.common.base.Utf8Test testCase = new com.google.common.base
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_llvm_sample.c59 struct lp_sampler_dynamic_state base; member in struct:draw_llvm_sampler_dynamic_state
72 struct lp_build_sampler_soa base; member in struct:draw_llvm_sampler_soa
87 draw_llvm_texture_member(const struct lp_sampler_dynamic_state *base, argument
96 (struct draw_llvm_sampler_dynamic_state *)base;
136 draw_llvm_texture_##_name( const struct lp_sampler_dynamic_state *base, \
140 return draw_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \
170 draw_llvm_sampler_soa_emit_fetch_texel(const struct lp_build_sampler_soa *base, argument
181 struct draw_llvm_sampler_soa *sampler = (struct draw_llvm_sampler_soa *)base;
187 &sampler->dynamic_state.base,
201 draw_llvm_sampler_soa_emit_size_query(const struct lp_build_sampler_soa *base, argument
[all...]
H A Ddraw_vs_llvm.c73 draw_llvm_destroy_variant(li->base);
93 vs->base.state.tokens = tgsi_dup_tokens(state->tokens);
94 if (!vs->base.state.tokens) {
99 tgsi_scan_shader(state->tokens, &vs->base.info);
103 vs->base.info.file_max[TGSI_FILE_INPUT]+1,
104 vs->base.info.file_max[TGSI_FILE_SAMPLER]+1);
106 vs->base.state.stream_output = state->stream_output;
107 vs->base.draw = draw;
108 vs->base.prepare = vs_llvm_prepare;
109 vs->base
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tex_sample.c64 struct lp_sampler_dynamic_state base; member in struct:llvmpipe_sampler_dynamic_state
77 struct lp_build_sampler_soa base; member in struct:lp_llvm_sampler_soa
92 lp_llvm_texture_member(const struct lp_sampler_dynamic_state *base, argument
100 (struct llvmpipe_sampler_dynamic_state *)base;
141 lp_llvm_texture_##_name( const struct lp_sampler_dynamic_state *base, \
145 return lp_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \
175 lp_llvm_sampler_soa_emit_fetch_texel(const struct lp_build_sampler_soa *base, argument
186 struct lp_llvm_sampler_soa *sampler = (struct lp_llvm_sampler_soa *)base;
197 &sampler->dynamic_state.base,
210 lp_llvm_sampler_soa_emit_size_query(const struct lp_build_sampler_soa *base, argument
[all...]
/external/parameter-framework/parameter/
H A DLinearParameterAdaptation.cpp33 #define base CParameterAdaptation macro
37 CLinearParameterAdaptation::CLinearParameterAdaptation() : base("Linear"), _dSlopeNumerator(1), _dSlopeDenominator(1)
42 base(strType), _dSlopeNumerator(1), _dSlopeDenominator(1)
49 base::showProperties(strResult);
93 return base::fromXml(xmlElement, serializingContext);
99 return base::fromUserValue(dValue * _dSlopeNumerator / _dSlopeDenominator);
104 return base::toUserValue(iValue) * _dSlopeDenominator / _dSlopeNumerator;
H A DLogarithmicParameterAdaptation.cpp35 #define base CLinearParameterAdaptation macro
37 // M_E is the base of the natural logarithm for 'e' from math.h
38 CLogarithmicParameterAdaptation::CLogarithmicParameterAdaptation() : base("Logarithmic"),
46 base::showProperties(strResult);
77 return base::fromXml(xmlElement, serializingContext);
83 return fmax(round(base::fromUserValue(log(dValue) / log(_dLogarithmBase))),
89 return exp(base::toUserValue(iValue) * log(_dLogarithmBase));
/external/v8/test/mjsunit/
H A Dnegate.js32 var base = a * b;
33 assertEquals(-base, a * -b, "a * -b where a = " + a + ", b = " + b);
34 assertEquals(-base, -a * b, "-a * b where a = " + a + ", b = " + b);
35 assertEquals(base, -a * -b, "*-a * -b where a = " + a + ", b = " + b);
55 var base = v * w; variable
57 assertEquals(-base, -v * w);
59 assertEquals(base, -v * -w);
/external/boringssl/src/crypto/bytestring/
H A Dcbb.c24 struct cbb_buffer_st *base; local
26 base = OPENSSL_malloc(sizeof(struct cbb_buffer_st));
27 if (base == NULL) {
31 base->buf = buf;
32 base->len = 0;
33 base->cap = cap;
34 base->can_resize = 1;
37 cbb->base = base;
63 cbb->base
77 cbb_buffer_add(struct cbb_buffer_st *base, uint8_t **out, size_t len) argument
118 cbb_buffer_add_u(struct cbb_buffer_st *base, uint32_t v, size_t len_len) argument
[all...]
/external/mesa3d/src/gallium/drivers/identity/
H A Did_objects.c52 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/mesa3d/src/gallium/state_trackers/egl/wayland/
H A Dnative_drm.c52 struct wayland_display base; member in struct:wayland_drm_display
78 if (drmdpy->base.configs)
79 FREE(drmdpy->base.configs);
80 if (drmdpy->base.own_dpy)
81 wl_display_disconnect(drmdpy->base.dpy);
97 struct pipe_screen *screen = drmdpy->base.base.screen;
163 drmdpy->base.formats |= HAS_ARGB8888;
166 drmdpy->base.formats |= HAS_XRGB8888;
206 drmdpy->base
[all...]
/external/freetype/
H A DAndroid.mk17 src/base/ftbbox.c \
18 src/base/ftbitmap.c \
19 src/base/ftfntfmt.c \
20 src/base/ftfstype.c \
21 src/base/ftglyph.c \
22 src/base/ftlcdfil.c \
23 src/base/ftstroke.c \
24 src/base/fttype1.c \
25 src/base/ftbase.c \
26 src/base/ftsyste
[all...]
/external/pdfium/third_party/bigint/
H A DBigUnsignedInABase.cc9 BigUnsignedInABase::BigUnsignedInABase(const Digit *d, Index l, Base base) argument
10 : NumberlikeArray<Digit>(d, l), base(base) {
11 // Check the base
12 if (base < 2)
17 if (blk[i] >= base)
38 BigUnsignedInABase::BigUnsignedInABase(const BigUnsigned &x, Base base) { argument
39 // Check the base
40 if (base < 2)
42 this->base
79 BigUnsignedInABase(const std::string &s, Base base) argument
[all...]
/external/icu/icu4c/source/layout/
H A DClassDefinitionTables.h24 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
25 le_bool hasGlyphClass(const LETableReference &base, le_int32 glyphClass, LEErrorCode &success) const;
28 LETableReference base((const le_uint8*)this);
30 return getGlyphClass(base,glyphID,ignored);
34 LETableReference base((const le_uint8*)this);
36 return hasGlyphClass(base,glyphClass,ignored);
46 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
47 le_bool hasGlyphClass(const LETableReference &base, le_int32 glyphClass, LEErrorCode &success) const;
64 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
65 le_bool hasGlyphClass(const LETableReference &base, le_int3
[all...]
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
H A Dstreambuf.pass.cpp24 typedef std::basic_streambuf<CharT> base; typedef in class:testbuf
33 base::setg(const_cast<CharT*>(str_.data()),
39 {return std::basic_string<CharT>(base::pbase(), base::pptr());}
43 virtual typename base::int_type
44 overflow(typename base::int_type __c = base::traits_type::eof()) argument
46 if (__c != base::traits_type::eof())
51 base::setp(const_cast<CharT*>(str_.data()),
53 base
[all...]
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
H A Dstreambuf.pass.cpp24 typedef std::basic_streambuf<CharT> base; typedef in class:testbuf
33 base::setg(const_cast<CharT*>(str_.data()),
39 {return std::basic_string<CharT>(base::pbase(), base::pptr());}
43 virtual typename base::int_type
44 overflow(typename base::int_type __c = base::traits_type::eof()) argument
46 if (__c != base::traits_type::eof())
51 base::setp(const_cast<CharT*>(str_.data()),
53 base
[all...]
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Dpbackfail.pass.cpp26 typedef std::wbuffer_convert<std::codecvt_utf8<wchar_t> > base; typedef in struct:test_buf
27 typedef base::char_type char_type;
28 typedef base::int_type int_type;
29 typedef base::traits_type traits_type;
31 explicit test_buf(std::streambuf* sb) : base(sb) {}
33 char_type* eback() const {return base::eback();}
34 char_type* gptr() const {return base::gptr();}
35 char_type* egptr() const {return base::egptr();}
36 void gbump(int n) {base::gbump(n);}
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base
[all...]
/external/openssh/openbsd-compat/
H A Dstrtoul.c48 strtoul(const char *nptr, char **endptr, int base) argument
70 if ((base == 0 || base == 16) &&
74 base = 16;
76 if (base == 0)
77 base = c == '0' ? 8 : 10;
79 cutoff = ULONG_MAX / (unsigned long)base;
80 cutlim = ULONG_MAX % (unsigned long)base;
88 if (c >= base)
98 acc *= (unsigned long)base;
[all...]
H A Dstrtoull.c50 strtoull(const char *nptr, char **endptr, int base) argument
72 if ((base == 0 || base == 16) &&
76 base = 16;
78 if (base == 0)
79 base = c == '0' ? 8 : 10;
81 cutoff = ULLONG_MAX / (unsigned long long)base;
82 cutlim = ULLONG_MAX % (unsigned long long)base;
90 if (c >= base)
100 acc *= (unsigned long long)base;
[all...]
/external/vboot_reference/utility/
H A Ddev_make_keypair46 local base=$1
51 openssl genrsa -F4 -out "${base}_${len}.pem" $len
53 openssl req -batch -new -x509 -key "${base}_${len}.pem" \
54 -out "${base}_${len}.crt"
56 dumpRSAPublicKey -cert "${base}_${len}.crt" > "${base}_${len}.keyb"
60 --pack "${base}.vbpubk" \
61 --key "${base}_${len}.keyb" \
67 --pack "${base}.vbprivk" \
68 --key "${base}
[all...]
/external/libdrm/libkms/
H A Dradeon.c50 struct kms_bo base; member in struct:radeon_bo
126 bo->base.kms = kms;
127 bo->base.handle = arg.handle;
128 bo->base.size = size;
129 bo->base.pitch = pitch;
130 bo->base.offset = 0;
133 *out = &bo->base;
159 if (bo->base.ptr) {
161 *out = bo->base.ptr;
166 arg.handle = bo->base
[all...]
/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;
/external/libpcap/Win32/Src/
H A Dinet_net.c49 register u_long val, base, n; local
60 val = 0; base = 10;
67 base = 16, cp++;
69 base = 8;
73 val = (val * base) + (c - '0');
77 if (base == 16 && isxdigit(c)) {
/external/selinux/libsepol/tests/
H A Dtest-linker-cond-map.c37 * - single boolean in base
39 * - single boolean in base optional
41 * - 2 booleans in base
43 * - 2 booleans in base optional
45 * - 2 booleans, base and module
46 * - 2 booleans, base optional and module
47 * - 2 booleans, base optional and module optional
48 * - 3 booleans, base, base optional, module
49 * - 4 boolean, base, bas
87 base_cond_tests(policydb_t * base) argument
118 module_cond_tests(policydb_t * base) argument
[all...]

Completed in 1319 milliseconds

1234567891011>>