/third_party/icu/icu4c/source/common/ |
H A D | cstring.h | 76 #define uprv_strtoul(str, end, base) U_STANDARD_CPP_NAMESPACE strtoul(str, end, base) 77 #define uprv_strtol(str, end, base) U_STANDARD_CPP_NAMESPACE strtol(str, end, base) 79 /* Conversion from a digit to the character with radix base from 2-19 */
|
/third_party/libuv/docs/code/pipe-echo-server/ |
H A D | main.c | 21 free(wr->buf.base); in free_write_req() 26 buf->base = malloc(suggested_size); in alloc_buffer() 40 req->buf = uv_buf_init(buf->base, nread); in echo_read() 51 free(buf->base); in echo_read()
|
/third_party/libuv/test/ |
H A D | test-callback-stack.c | 50 buf->base = malloc(size); in alloc_cb() 51 ASSERT_NOT_NULL(buf->base); in alloc_cb() 74 free(buf->base); in read_cb() 158 buf.base = (char*) &MESSAGE; in connect_cb()
|
H A D | test-tcp-write-in-a-row.c | 87 static char base[1024]; in alloc_cb() local 89 buf->base = base; in alloc_cb() 90 buf->len = sizeof(base); in alloc_cb()
|
H A D | test-tcp-try-write.c | 71 static char base[1024]; in alloc_cb() local 73 buf->base = base; in alloc_cb() 74 buf->len = sizeof(base); in alloc_cb()
|
/third_party/libuv/docs/code/multi-echo-server/ |
H A D | worker.c | 18 free(wr->buf.base); in free_write_req() 23 buf->base = malloc(suggested_size); in alloc_buffer() 37 req->buf = uv_buf_init(buf->base, nread); in echo_read() 48 free(buf->base); in echo_read()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_image.h | 43 VK_DEFINE_NONDISP_HANDLE_CASTS(tu_image, vk.base, VkImage, VK_OBJECT_TYPE_IMAGE) 63 VK_DEFINE_NONDISP_HANDLE_CASTS(tu_image_view, vk.base, VkImageView, 68 struct vk_object_base base; member 74 VK_DEFINE_NONDISP_HANDLE_CASTS(tu_buffer_view, base, VkBufferView,
|
/third_party/mesa3d/src/broadcom/drm-shim/ |
H A D | v3d_noop.c | 34 struct shim_bo base; member 65 drm_shim_bo_init(&bo->base, create->size); in v3d_ioctl_create_bo() 72 create->handle = drm_shim_bo_get_handle(shim_fd, &bo->base); in v3d_ioctl_create_bo() 74 drm_shim_bo_put(&bo->base); in v3d_ioctl_create_bo()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_state_cs.c | 49 svga_init_shader_key_common(svga, PIPE_SHADER_COMPUTE, &cs->base, key); in make_cs_key() 56 if (svga->curr.grid_info.indirect && cs->base.info.uses_grid_size) { in make_cs_key() 99 variant = svga_search_shader_key(&cs->base, &key); in emit_hw_cs() 102 ret = svga_compile_shader(svga, &cs->base, &key, &variant); in emit_hw_cs()
|
/third_party/mesa3d/src/imagination/vulkan/winsys/pvrsrvkm/ |
H A D | pvr_srv_bo.h | 123 struct pvr_winsys_bo base; member 133 struct pvr_winsys_vma base; member 183 container_of((bo), struct pvr_srv_winsys_bo, base) 185 container_of((vma), struct pvr_srv_winsys_vma, base)
|
/third_party/node/test/parallel/ |
H A D | test-whatwg-url-custom-parsing.js | 30 { input: 'test', base: null }, 31 { input: 'http://nodejs.org', base: null }, 36 // > If `failure` is true, parsing `about:blank` against `base` 38 // > base URLs into strings properly fails the whole parsing 39 // > algorithm if the base URL cannot be parsed. 43 base: test.input, 55 () => new URL(test.input, test.base),
|
/third_party/node/deps/v8/src/wasm/ |
H A D | compilation-environment.h | 105 virtual base::Vector<const uint8_t> GetCode(WireBytesRef) const = 0; 108 virtual base::Optional<ModuleWireBytes> GetModuleBytes() const = 0; 161 base::Vector<const int> lazy_functions, 162 base::Vector<const int> liftoff_functions);
|
H A D | canonical-types.h | 14 #include "src/base/lazy-instance.h" 71 return base::hash_combine(type_def.kind, in hash_value() 72 base::hash_value(is_relative_supertype)); in hash_value() 93 result = base::hash_combine(result, type.hash_value()); in hash_value() 115 base::Mutex mutex_;
|
/third_party/node/deps/icu-small/source/common/ |
H A D | cstring.h | 76 #define uprv_strtoul(str, end, base) U_STANDARD_CPP_NAMESPACE strtoul(str, end, base) 77 #define uprv_strtol(str, end, base) U_STANDARD_CPP_NAMESPACE strtol(str, end, base) 79 /* Conversion from a digit to the character with radix base from 2-19 */
|
/third_party/mesa3d/src/intel/dev/ |
H A D | intel_debug.c | 175 .base = { in intel_debug_write_identifiers() 183 driver_desc.base.length = sizeof(driver_desc) + len + 1; in intel_debug_write_identifiers() 185 output += driver_desc.base.length; in intel_debug_write_identifiers() 191 .base = { in intel_debug_write_identifiers()
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_instance.h | 35 struct vn_instance_base base; member 62 * and base.base.app_info.api_version is what the app requests. 66 * base.base.app_info.api_version. renderer_version is the instance 89 base.base.base,
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_debug_report.c | 32 struct vk_object_base base; member 41 VK_DEFINE_NONDISP_HANDLE_CASTS(vk_debug_report_callback, base, in VK_DEFINE_NONDISP_HANDLE_CASTS() 61 vk_object_base_init(NULL, &cb->base, in VK_DEFINE_NONDISP_HANDLE_CASTS() 91 vk_object_base_finish(&callback->base); in vk_common_DestroyDebugReportCallbackEXT()
|
/third_party/libevdev/doc/style/ |
H A D | dynsections.js | 2 {var base=$(linkObj).attr('id');var summary=$('#'+base+'-summary');var content=$('#'+base+'-content');var trigger=$('#'+base+'-trigger');var src=$(trigger).attr('src');if(content.is(':visible')===true){content.hide();summary.show();$(linkObj).addClass('closed').removeClass('opened');$(trigger).attr('src',src.substring(0,src.length-8)+'closed.png');}else{content.show();summary.hide();$(linkObj).removeClass('closed').addClass('opened');$(trigger).attr('src',src.substring(0,src.length-10)+'open.png');}
|
/third_party/libevdev/doc/html/ |
H A D | dynsections.js | 27 var base = $(linkObj).attr('id'); 28 var summary = $('#'+base+'-summary'); 29 var content = $('#'+base+'-content'); 30 var trigger = $('#'+base+'-trigger');
|
/third_party/node/deps/v8/src/codegen/ |
H A D | external-reference-encoder.cc | 52 v8::base::OS::Print( in ~ExternalReferenceEncoder() 75 v8::base::OS::PrintError("Unknown external reference %p.\n", addr); in Encode() 76 v8::base::OS::PrintError("%s\n", in Encode() 78 v8::base::OS::Abort(); in Encode()
|
/third_party/node/deps/v8/src/base/ |
H A D | address-region.h | 10 #include "src/base/macros.h" 13 namespace base { namespace 21 bool operator()(base::AddressRegion a, base::AddressRegion b) const { in operator ()() 56 base::AddressRegion GetOverlap(AddressRegion region) const { in GetOverlap() 92 } // namespace base
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-freebsd.cc | 34 #include "src/base/macros.h" 35 #include "src/base/platform/platform-posix-time.h" 36 #include "src/base/platform/platform-posix.h" 37 #include "src/base/platform/platform.h" 40 namespace base { namespace 113 void* base; in GetStackStart() local 115 error = pthread_attr_getstack(&attr, &base, &size); in GetStackStart() 118 return reinterpret_cast<uint8_t*>(base) + size; in GetStackStart() 124 } // namespace base
|
/third_party/node/deps/v8/src/builtins/ |
H A D | growable-fixed-array-gen.cc | 94 from_array, base::Optional<TNode<IntPtrT>>(base::nullopt), in ResizeFixedArray() 95 base::Optional<TNode<IntPtrT>>(element_count), in ResizeFixedArray() 96 base::Optional<TNode<IntPtrT>>(new_capacity), flags)); in ResizeFixedArray()
|
/third_party/node/deps/v8/src/heap/base/ |
H A D | stack.cc | 5 #include "src/heap/base/stack.h" 9 #include "src/base/platform/platform.h" 10 #include "src/base/sanitizer/asan.h" 11 #include "src/base/sanitizer/msan.h" 12 #include "src/base/sanitizer/tsan.h" 15 namespace base { namespace 47 return v8::base::Stack::GetCurrentStackPosition() <= slot && in IsOnStack() 171 return v8::base::Stack::GetCurrentStackPosition(); in GetCurrentStackPointerForLocalVariables() 174 return v8::base::Stack::GetCurrentStackPosition(); in GetCurrentStackPointerForLocalVariables() 178 } // namespace base [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | code-kind.h | 8 #include "src/base/bounds.h" 9 #include "src/base/flags.h" 63 return base::IsInRange(kind, CodeKind::INTERPRETED_FUNCTION, 70 return base::IsInRange(kind, CodeKind::MAGLEV, CodeKind::TURBOFAN); 76 return base::IsInRange(kind, CodeKind::INTERPRETED_FUNCTION, 120 using CodeKinds = base::Flags<CodeKindFlag>;
|