/third_party/protobuf/src/google/protobuf/ |
H A D | implicit_weak_message.h | 144 iterator begin() { return iterator(base().raw_data()); } in begin() 145 const_iterator begin() const { return iterator(base().raw_data()); } in begin() 147 iterator end() { return begin() + base().size(); } in end() 148 const_iterator end() const { return begin() + base().size(); } in end() 151 return pointer_iterator(base().raw_mutable_data()); in pointer_begin() 154 return const_pointer_iterator(base().raw_mutable_data()); in pointer_begin() 157 return pointer_iterator(base().raw_mutable_data() + base().size()); in pointer_end() 160 return const_pointer_iterator(base().raw_mutable_data() + base() in pointer_end() 175 const internal::RepeatedPtrFieldBase& base() const { return weak; } base() function 176 internal::RepeatedPtrFieldBase& base() { return weak; } base() function [all...] |
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | compression_utils.h | 10 #include "base/containers/span.h" 21 bool GzipCompress(base::span<const char> input, 32 bool GzipCompress(base::span<const char> input, std::string* output); 35 bool GzipCompress(base::span<const uint8_t> input, std::string* output); 42 // Like the above method, but uses base::span to avoid allocations if 46 bool GzipUncompress(base::span<const char> input, 47 base::span<const char> output); 50 bool GzipUncompress(base::span<const uint8_t> input, 51 base::span<const uint8_t> output); 57 bool GzipUncompress(base [all...] |
H A D | zip_writer.cc | 9 #include "base/files/file.h" 10 #include "base/logging.h" 11 #include "base/strings/strcat.h" 12 #include "base/strings/string_util.h" 23 const base::TimeTicks now = base::TimeTicks::Now(); in ShouldContinue() 35 bool ZipWriter::AddFileContent(const base::FilePath& path, base::File file) { in AddFileContent() 62 bool ZipWriter::OpenNewFileEntry(const base::FilePath& path, in OpenNewFileEntry() 64 base in OpenNewFileEntry() [all...] |
H A D | compression_utils.cc | 7 #include "base/bit_cast.h" 8 #include "base/check_op.h" 9 #include "base/process/memory.h" 10 #include "base/sys_byteorder.h" 16 bool GzipCompress(base::span<const char> input, in GzipCompress() 37 bool GzipCompress(base::span<const char> input, std::string* output) { in GzipCompress() 38 return GzipCompress(base::as_bytes(input), output); in GzipCompress() 41 bool GzipCompress(base::span<const uint8_t> input, std::string* output) { in GzipCompress() 51 if (!base::UncheckedMalloc(compressed_data_size, in GzipCompress() 93 bool GzipUncompress(base [all...] |
/third_party/node/deps/zlib/google/ |
H A D | compression_utils.h | 10 #include "base/containers/span.h" 21 bool GzipCompress(base::span<const char> input, 32 bool GzipCompress(base::span<const char> input, std::string* output); 35 bool GzipCompress(base::span<const uint8_t> input, std::string* output); 42 // Like the above method, but uses base::span to avoid allocations if 46 bool GzipUncompress(base::span<const char> input, 47 base::span<const char> output); 50 bool GzipUncompress(base::span<const uint8_t> input, 51 base::span<const uint8_t> output); 57 bool GzipUncompress(base [all...] |
H A D | zip_writer.cc | 9 #include "base/files/file.h" 10 #include "base/logging.h" 11 #include "base/strings/strcat.h" 12 #include "base/strings/string_util.h" 23 const base::TimeTicks now = base::TimeTicks::Now(); in ShouldContinue() 35 bool ZipWriter::AddFileContent(const base::FilePath& path, base::File file) { in AddFileContent() 62 bool ZipWriter::OpenNewFileEntry(const base::FilePath& path, in OpenNewFileEntry() 64 base in OpenNewFileEntry() [all...] |
/third_party/skia/third_party/externals/zlib/google/ |
H A D | compression_utils.h | 10 #include "base/containers/span.h" 21 bool GzipCompress(base::span<const char> input, 32 bool GzipCompress(base::span<const char> input, std::string* output); 35 bool GzipCompress(base::span<const uint8_t> input, std::string* output); 42 // Like the above method, but uses base::span to avoid allocations if 46 bool GzipUncompress(base::span<const char> input, 47 base::span<const char> output); 50 bool GzipUncompress(base::span<const uint8_t> input, 51 base::span<const uint8_t> output); 57 bool GzipUncompress(base [all...] |
H A D | compression_utils.cc | 7 #include "base/bit_cast.h" 8 #include "base/check_op.h" 9 #include "base/process/memory.h" 10 #include "base/sys_byteorder.h" 16 bool GzipCompress(base::span<const char> input, in GzipCompress() 37 bool GzipCompress(base::span<const char> input, std::string* output) { in GzipCompress() 38 return GzipCompress(base::as_bytes(input), output); in GzipCompress() 41 bool GzipCompress(base::span<const uint8_t> input, std::string* output) { in GzipCompress() 51 if (!base::UncheckedMalloc(compressed_data_size, in GzipCompress() 93 bool GzipUncompress(base [all...] |
/third_party/skia/src/sksl/ir/ |
H A D | SkSLIndexExpression.cpp | 21 static bool index_out_of_range(const Context& context, SKSL_INT index, const Expression& base) { in index_out_of_range() argument 22 if (index >= 0 && index < base.type().columns()) { in index_out_of_range() 26 context.fErrors->error(base.fLine, "index " + to_string(index) + " out of range for '" + in index_out_of_range() 27 base.type().displayName() + "'"); in index_out_of_range() 54 std::unique_ptr<Expression> base, in Convert() 57 if (base->is<TypeReference>()) { in Convert() 58 const Type& baseType = base->as<TypeReference>().value(); in Convert() 63 return TypeReference::Convert(context, base->fLine, in Convert() 67 const Type& baseType = base->type(); in Convert() 69 context.fErrors->error(base in Convert() 52 Convert(const Context& context, SymbolTable& symbolTable, std::unique_ptr<Expression> base, std::unique_ptr<Expression> index) Convert() argument 90 Make(const Context& context, std::unique_ptr<Expression> base, std::unique_ptr<Expression> index) Make() argument [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | memory-tracing.cc | 9 #include "src/base/memory.h" 10 #include "src/base/strings.h" 11 #include "src/base/vector.h" 17 void TraceMemoryOperation(base::Optional<ExecutionTier> tier, in TraceMemoryOperation() 20 base::EmbeddedVector<char, 91> value; in TraceMemoryOperation() 26 base::SNPrintF(value, str ":" format, \ in TraceMemoryOperation() 27 base::ReadLittleEndianValue<ctype1>(address), \ in TraceMemoryOperation() 28 base::ReadLittleEndianValue<ctype2>(address)); \ in TraceMemoryOperation() 39 base::ReadLittleEndianValue<uint32_t>(address), in TraceMemoryOperation() 40 base in TraceMemoryOperation() [all...] |
/third_party/mesa3d/src/gallium/frontends/d3d10umd/ |
H A D | ShaderTGSI.c | 318 if (sx->clip_distance_mapping[0].d3d == operand->base.index[0].imm) { in translate_semantic_index() 321 assert(sx->clip_distance_mapping[1].d3d == operand->base.index[0].imm); in translate_semantic_index() 326 if (sx->cull_distance_mapping[0].d3d == operand->base.index[0].imm) { in translate_semantic_index() 329 assert(sx->cull_distance_mapping[1].d3d == operand->base.index[0].imm); in translate_semantic_index() 429 unsigned idx = operand->base.index[0].imm; in dcl_base_output() 492 assert(dst->base.index_dim == 1); in dcl_vs_input() 493 assert(dst->base.index[0].imm < SHADER_MAX_INPUTS); in dcl_vs_input() 495 reg = ureg_DECL_vs_input(ureg, dst->base.index[0].imm); in dcl_vs_input() 497 dcl_base_input(sx, ureg, dst, reg, dst->base.index[0].imm, in dcl_vs_input() 506 if (dst->base in dcl_gs_input() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | torque-parser.cc | 35 base::Optional<Identifier*> name; 42 base::Optional<TypeExpression*> type; 114 ParseResultHolder<base::Optional<TypeExpression*>>::id = 127 ParseResultHolder<base::Optional<Identifier*>>::id = 160 ParseResultHolder<base::Optional<AnnotationParameter>>::id = 184 ParseResultHolder<base::Optional<ImplicitParameters>>::id = 208 ParseResultHolder<base::Optional<std::string>>::id = 238 ParseResultHolder<base::Optional<TypeList>>::id = 253 ParseResultHolder<base::Optional<Statement*>>::id = 257 ParseResultHolder<base [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_context.c | 46 screen = &nv30->screen->base; in nv30_context_kick_notify() 76 struct nouveau_pushbuf *push = nv30->base.pushbuf; in nv30_context_flush() 79 nouveau_fence_ref(nv30->screen->base.fence.current, in nv30_context_flush() 84 nouveau_context_update_frame_stats(&nv30->base); in nv30_context_flush() 162 if (nv30->base.pipe.stream_uploader) in nv30_context_destroy() 163 u_upload_destroy(nv30->base.pipe.stream_uploader); in nv30_context_destroy() 171 if (nv30->screen->base.pushbuf->user_priv == &nv30->bufctx) in nv30_context_destroy() 172 nv30->screen->base.pushbuf->user_priv = NULL; in nv30_context_destroy() 179 nouveau_context_destroy(&nv30->base); in nv30_context_destroy() 202 nv30->base in nv30_context_create() [all...] |
/third_party/libinput/src/ |
H A D | path-seat.c | 33 struct libinput base; member 44 struct libinput_seat base; member 53 struct libinput_seat *seat = device->base.seat; in path_disable_device() 57 &seat->devices_list, base.link) { in path_disable_device() 73 list_for_each_safe(seat, &input->base.seat_list, base.link) { in path_input_disable() 74 libinput_seat_ref(&seat->base); in path_input_disable() 76 &seat->base.devices_list, base.link) in path_input_disable() 78 libinput_seat_unref(&seat->base); in path_input_disable() [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_texture.c | 77 struct pipe_resource *pt = &lpr->base; in llvmpipe_texture_layout() 116 if (llvmpipe_resource_is_1d(&lpr->base)) in llvmpipe_texture_layout() 136 if (lpr->base.target == PIPE_TEXTURE_CUBE) { in llvmpipe_texture_layout() 140 if (lpr->base.target == PIPE_TEXTURE_3D) in llvmpipe_texture_layout() 142 else if (lpr->base.target == PIPE_TEXTURE_1D_ARRAY || in llvmpipe_texture_layout() 143 lpr->base.target == PIPE_TEXTURE_2D_ARRAY || in llvmpipe_texture_layout() 144 lpr->base.target == PIPE_TEXTURE_CUBE || in llvmpipe_texture_layout() 145 lpr->base.target == PIPE_TEXTURE_CUBE_ARRAY) in llvmpipe_texture_layout() 195 lpr.base = *res; in llvmpipe_can_create_resource() 213 const unsigned width = MAX2(1, align(lpr->base in llvmpipe_displaytarget_layout() [all...] |
/third_party/node/test/fixtures/wpt/url/resources/ |
H A D | a-element-origin.js | 3 function setBase(base) { 4 document.getElementById("base").href = base 7 function bURL(url, base) { 8 setBase(base); 21 if (expected.base === null && expected.input.startsWith("#")) 24 // We cannot use a null base for HTML tests 25 const base = expected.base === null ? "about:blank" : expected.base; [all...] |
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | resource9.c | 52 hr = NineUnknown_ctor(&This->base, pParams); in NineResource9_ctor() 56 This->info.screen = screen = This->base.device->screen; in NineResource9_ctor() 82 p_atomic_add(&This->base.device->available_texture_mem, -This->size); in NineResource9_ctor() 84 if (This->base.device && in NineResource9_ctor() 85 p_atomic_read(&This->base.device->available_texture_mem) <= in NineResource9_ctor() 86 This->base.device->available_texture_limit) in NineResource9_ctor() 87 NineDevice9_EvictManagedResourcesInternal(This->base.device); in NineResource9_ctor() 88 if (p_atomic_read(&This->base.device->available_texture_mem) <= in NineResource9_ctor() 89 This->base.device->available_texture_limit) { in NineResource9_ctor() 96 This->resource = nine_resource_create_with_retry(This->base in NineResource9_ctor() [all...] |
/third_party/mesa3d/include/vulkan/ |
H A D | vk_icd.h | 134 VkIcdSurfaceBase base; member 142 VkIcdSurfaceBase base; member 150 VkIcdSurfaceBase base; member 158 VkIcdSurfaceBase base; member 166 VkIcdSurfaceBase base; member 174 VkIcdSurfaceBase base; member 182 VkIcdSurfaceBase base; member 189 VkIcdSurfaceBase base; member 196 VkIcdSurfaceBase base; member 203 VkIcdSurfaceBase base; member 209 VkIcdSurfaceBase base; global() member 220 VkIcdSurfaceBase base; global() member 225 VkIcdSurfaceBase base; global() member 232 VkIcdSurfaceBase base; global() member 239 VkIcdSurfaceBase base; global() member [all...] |
/third_party/node/deps/v8/src/sandbox/ |
H A D | external-pointer-table-inl.h | 8 #include "src/base/atomicops.h" 33 mutex_ = new base::Mutex; in Init() 40 base::MutexGuard guard(mutex_); in Init() 85 base::Atomic32* freelist_head_ptr = in Allocate() 86 reinterpret_cast<base::Atomic32*>(&freelist_head_); in Allocate() 96 uint32_t freelist_head = base::Acquire_Load(freelist_head_ptr); in Allocate() 100 base::MutexGuard guard(mutex_); in Allocate() 103 freelist_head = base::Relaxed_Load(freelist_head_ptr); in Allocate() 118 uint32_t old_val = base::Relaxed_CompareAndSwap( in Allocate() 128 STATIC_ASSERT(sizeof(base in Mark() [all...] |
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vk_icd.h | 134 VkIcdSurfaceBase base; member 142 VkIcdSurfaceBase base; member 150 VkIcdSurfaceBase base; member 158 VkIcdSurfaceBase base; member 166 VkIcdSurfaceBase base; member 174 VkIcdSurfaceBase base; member 182 VkIcdSurfaceBase base; member 189 VkIcdSurfaceBase base; member 196 VkIcdSurfaceBase base; member 203 VkIcdSurfaceBase base; member 209 VkIcdSurfaceBase base; global() member 220 VkIcdSurfaceBase base; global() member 225 VkIcdSurfaceBase base; global() member 232 VkIcdSurfaceBase base; global() member 239 VkIcdSurfaceBase base; global() member [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/ |
H A D | LookupTable.java | 36 protected LookupTable(ReadableFontData data, int base, boolean dataIsCanonical) { in LookupTable() argument 37 super(data, base, dataIsCanonical); in LookupTable() 62 return new LigatureSubst(data, base, dataIsCanonical); in readSubTable() 64 return new SingleSubst(data, base, dataIsCanonical); in readSubTable() 66 return new MultipleSubst(data, base, dataIsCanonical); in readSubTable() 68 return new AlternateSubst(data, base, dataIsCanonical); in readSubTable() 70 return new ContextSubst(data, base, dataIsCanonical); in readSubTable() 72 return new ChainContextSubst(data, base, dataIsCanonical); in readSubTable() 74 return new ExtensionSubst(data, base, dataIsCanonical); in readSubTable() 76 return new ReverseChainSingleSubst(data, base, dataIsCanonica in readSubTable() 102 Builder(ReadableFontData data, int base, boolean dataIsCanonical) Builder() argument 111 readTable(ReadableFontData data, int base, boolean dataIsCanonical) readTable() argument [all...] |
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/ |
H A D | vk_icd.h | 134 VkIcdSurfaceBase base; member 142 VkIcdSurfaceBase base; member 150 VkIcdSurfaceBase base; member 158 VkIcdSurfaceBase base; member 166 VkIcdSurfaceBase base; member 174 VkIcdSurfaceBase base; member 182 VkIcdSurfaceBase base; member 189 VkIcdSurfaceBase base; member 196 VkIcdSurfaceBase base; member 203 VkIcdSurfaceBase base; member 209 VkIcdSurfaceBase base; global() member 220 VkIcdSurfaceBase base; global() member 225 VkIcdSurfaceBase base; global() member 232 VkIcdSurfaceBase base; global() member 239 VkIcdSurfaceBase base; global() member [all...] |
/third_party/gn/src/gn/ |
H A D | build_settings.h | 14 #include "base/files/file_path.h" 49 const base::FilePath& root_path() const { return root_path_; } in root_path() 50 const base::FilePath& dotfile_name() const { return dotfile_name_; } in dotfile_name() 52 void SetRootPath(const base::FilePath& r); 53 void set_dotfile_name(const base::FilePath& d) { dotfile_name_ = d; } in set_dotfile_name() 58 const base::FilePath& secondary_source_path() const { in secondary_source_path() 64 base::FilePath python_path() const { return python_path_; } in python_path() 65 void set_python_path(const base::FilePath& p) { python_path_ = p; } in set_python_path() 114 base::FilePath GetFullPath(const SourceFile& file) const; 115 base [all...] |
/third_party/mesa3d/src/imagination/vulkan/winsys/pvrsrvkm/ |
H A D | pvr_srv_bo.c | 79 assert(aligment_out == srv_ws->base.page_size); in pvr_srv_alloc_display_pmr() 108 srv_ws = to_pvr_srv_winsys(srv_bo->base.ws); in buffer_release() 187 srv_bo->base.is_imported = true; in pvr_srv_winsys_buffer_create() 195 srv_ws->base.log2_page_size, in pvr_srv_winsys_buffer_create() 204 srv_bo->base.size = size; in pvr_srv_winsys_buffer_create() 205 srv_bo->base.ws = ws; in pvr_srv_winsys_buffer_create() 210 *bo_out = &srv_bo->base; in pvr_srv_winsys_buffer_create() 260 assert(aligment_out == srv_ws->base.page_size); in pvr_srv_winsys_buffer_create_from_fd() 262 srv_bo->base.ws = ws; in pvr_srv_winsys_buffer_create_from_fd() 263 srv_bo->base in pvr_srv_winsys_buffer_create_from_fd() [all...] |
/third_party/nghttp2/lib/ |
H A D | nghttp2_http.c | 108 if (nv->name->base[0] == ':') { in http_request_on_header() 127 if (lstreq("HEAD", nv->value->base, nv->value->len)) { in http_request_on_header() 132 switch (nv->value->base[6]) { in http_request_on_header() 134 if (lstreq("CONNECT", nv->value->base, nv->value->len)) { in http_request_on_header() 143 if (lstreq("OPTIONS", nv->value->base, nv->value->len)) { in http_request_on_header() 155 if (nv->value->base[0] == '/') { in http_request_on_header() 157 } else if (nv->value->len == 1 && nv->value->base[0] == '*') { in http_request_on_header() 165 if ((nv->value->len == 4 && memieq("http", nv->value->base, 4)) || in http_request_on_header() 166 (nv->value->len == 5 && memieq("https", nv->value->base, 5))) { in http_request_on_header() 188 stream->content_length = parse_uint(nv->value->base, n in http_request_on_header() [all...] |