search for: sub_typ

Displaying 11 results from an estimated 11 matches for "sub_typ".

Did you mean: sub_type
2006 Jun 17
5
STI versus Composition...or the headaches of one big table
...I''m trying to get my head around the best way to do this. I''d like to break it out via composition, but having a Autos table with an suv_id, mini_id, mid_id, and sports_id (for all possible combos) seems like really bad design. I suppose I could have the Autos table have a sub_type_id and sub_type column, and somehow use this to map. However, I''m unsure how to go about this...composed_of doesn''t seem to be designed with this situation in mind. Any insight or suggestions you may provide will be very welcome. Thanks! B.A. -- B.A. Baracus: I thought you...
2015 May 17
2
[LLVMdev] copy value of a global's data field to another global
...indexes_ llvm::Constant* pConst; pConst=ConstantExpr::getGetElementPtr(pGvarAct, const_ptr_indicesVec); and e.g. use this to repalece an argumrnt of an instruction like: I->setOperand(someArgumentIndex,pConst); However, getGetElementPtr returns a pointerType, which holds the actual type as sub_type. This is a problem when I want to use the data from one global for the initializer of another pGvar->setInitializer(__NeedsAFloatTy_here__); //not pointerTy So what I'm trying to do is copy some data-fields of one global to another. I know the 'index-trace' used in getGetEle...
2015 May 18
2
[LLVMdev] copy value of a global's data field to another global
...tPtr(pGvarAct, const_ptr_indicesVec); >> >> and e.g. use this to repalece an argumrnt of an instruction like: >> >> I->setOperand(someArgumentIndex,pConst); >> >> However, getGetElementPtr returns a pointerType, which holds the actual >> type >> as sub_type. >> This is a problem when I want to use the data from one global for the >> initializer of another >> >> pGvar->setInitializer(__NeedsAFloatTy_here__); //not pointerTy >> >> So what I'm trying to do is copy some data-fields of one global to >>...
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...+ meta* tmp = buf; + buf = buf->next; + delete tmp; + } + } +}; + +struct Db +{ + typedef std::basic_string<char, std::char_traits<char>, + malloc_alloc<char>> String; + + typedef Vector<node*> sub_type; + + // typedef Vector<string_pair<String>> sub_type; + typedef Vector<sub_type> template_param_type; + sub_type names; + template_param_type subs; + Vector<template_param_type> template_param; + unsigned cv = 0; + unsigned ref = 0; + unsigned encodi...
2023 Apr 03
0
[Patch v3] vdpa/mlx5: Avoid losing link state updates
...struct mlx5_vdpa_net *ndev = container_of(nb, struct mlx5_vdpa_net, nb); > >> + struct mlx5_eqe *eqe = param; > >> + int ret = NOTIFY_DONE; > >> + > >> + if (event == MLX5_EVENT_TYPE_PORT_CHANGE) { > >> + switch (eqe->sub_type) { > >> + case MLX5_PORT_CHANGE_SUBTYPE_DOWN: > >> + case MLX5_PORT_CHANGE_SUBTYPE_ACTIVE: > >> + if (queue_link_work(ndev)) > >> + return NOTIFY_DONE; > >> + > >>...
2007 Dec 20
4
Ruby on Rails mailer
...param = nil ) if sub main, sub = str, sub else main, sub = str.split(%r</>, 2) raise ArgumentError, "sub type missing: #{str.inspect}" unless sub end if h = @header[''content-type''] h.main_type = main h.sub_type = sub h.params.clear else store ''Content-Type'', "#{main}/#{sub}" end @header[''content-type''].params.replace param if param str end As you can str contains "html" as real_content_type was passed in...
2023 Jan 30
6
[PATCH 0/6] features provisioning fixes and mlx5_vdpa support
This patchset is pre-requisite to export and provision device config attributes and features for vdpa live migration, in a way backward and forward compatibility can be retained. The follow up work [1] will need to be built around the new feature provisioning uAPI, with which it's easier to formalize migration compatibility support at the driver level. Thanks, -Siwei [1] [PATCH v3 0/4] vDPA:
2023 Jan 31
7
[PATCH v2 0/7] features provisioning fixes and mlx5_vdpa support
This patchset is pre-requisite to export and provision device config attributes and features for vdpa live migration, in a way backward and forward compatibility can be retained. The follow up work [1] will need to be built around the new feature provisioning uAPI, with which it's easier to formalize migration compatibility support at the driver level. Thanks, -Siwei [1] [PATCH v3 0/4] vDPA:
2023 Feb 03
6
[PATCH v3 0/6] features provisioning fixes and mlx5_vdpa support
This patchset is pre-requisite to export and provision device config attributes and features for vdpa live migration, in a way backward and forward compatibility can be retained. The follow up work [1] will need to be built around the new feature provisioning uAPI, with which it's easier to formalize migration compatibility support at the driver level. Thanks, -Siwei [1] [PATCH v3 0/4] vDPA:
2023 Feb 06
7
[PATCH v4 0/6] features provisioning fixes and mlx5_vdpa support
This patchset is pre-requisite to export and provision device config attributes and features for vdpa live migration, in a way backward and forward compatibility can be retained. The follow up work [1] will need to be built around the new feature provisioning uAPI, with which it's easier to formalize migration compatibility support at the driver level. Thanks, -Siwei [1] [PATCH v3 0/4] vDPA:
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...sterClass rc> : Pat < > + (int_AMDGPU_pow rc:$src0, rc:$src1), > + (exp_ieee (mul rc:$src1, (log_ieee rc:$src0))) > +>; > + > +/* Other helper patterns */ > +/* --------------------- */ > + > +/* Extract element pattern */ > +class Extract_Element <ValueType sub_type, ValueType vec_type, > + RegisterClass vec_class, int sub_idx, > + SubRegIndex sub_reg>: Pat< > + (sub_type (vector_extract (vec_type vec_class:$src), sub_idx)), > + (EXTRACT_SUBREG vec_class:$src, sub_reg) > +>; > + > +/* Ins...