search for: licensee

Displaying 20 results from an estimated 57 matches for "licensee".

Did you mean: license
2017 Aug 31
7
[RFC] Function stack size section.
Hi All, We have a local change in the X86AsmPrinter that outputs a section containing metadata on function stack sizes. We use this to measure changes to stack size between versions of the compiler and it also allows our licensees to do the same for their code. The section simply contains pairs of function symbol references (8 byte) and stack sizes (unsigned LEB128). We would like to upstream this change as a PS4 only modification, or as a more general cross platform one. Would people be interested in (or happy wit...
2002 Feb 12
4
SRP Patch Integration?
...PKI deployment (e.g. X.509 certs). Put >another way, is there any good reason *not* to fold these patches into >OpenSSH proper? SRP would be useful to have. However, as it is patented I do not know if it can be included in OpenSSH. The grant in the patent seems to place restrictions on the licensee. It is not clear if EKE or SPEKE patents are required for a SRP implementation. As far as I see it, everything that is patented is tainted. Somebody who has money to pay a lawer needs to investigate this further. Niels.
2013 Aug 12
1
[LLVMdev] lets make Akira Hatanaka the code owner for the Mips target
...he key person inside of Mips for reviewing patches and giving advice to other developers regarding new Mips work. To assure the future quality of the Mips port, I think it makes sense to formalize what is already true inside of Mips, to the larger community that may contribute to Mips. We have licensees with their own variations and extensions and there will be other people wanting to make changes to the Mips code generator outside of Mips. Richard Sandiford has held this position for the gcc Mips port for many years and it has helped greatly to make that code generator solid. Reed
2005 Oct 18
3
Legal issues for non-profit radio stations.
...month, assuming everything goes to plan. Presumably I will need one of your licences to be sure this is legal - but I will not be hosting adverts on either the radio station or website as this is a strictly non-profit venture. As I understand, you generate your revenue based on a percentage of the licensee's revenue,of which there will be none, where does this leave me in terms of getting a licence? I quote from your website "The MCPS-PRS Alliance Joint Online Licence (JOL) was launched in 2002 and since then over 100 music service providers have signed up to its terms. Licensees are able t...
2016 Jul 05
2
Winbind process stuck at 100% after changing use_mmap to no
...an I should not even have my CTDB lock > file on MooseFS? > 3) Do the inconsistent reports from a ping_pong -rw test show there is > a major problem with MooseFS as the underlying FS for Samba exports > and something needs to be done with the underlying FS? > > I'm a paying licensee of MooseFS Pro, so I hope you can understand my > wishes to get this problem sorted. If contracting some of the Sernet > chaps is required, we've done it before and might be prepared to do so > in this case. > > ROFL ROFL Do you know who Volker is ??? Please listen to him,...
2004 Sep 19
2
Icecast2 Server - AAC/HE-AAC/aacPlus Support
Hello- You guys have done an excellent job with the Icecast2 server. I probably don't need to tell you that, but I did anyway. We are Coding Technologies licensees and have recently developed a streaming audio encoder supporting AAC/HE-AAC/aacPlus using RTSP/RTP, SHOUTcast HTTP/ICY, and Icecast2 HTTP/ICY, Orban Opticodec-PC. More information here: http://www.orban.com/orban/products/stream/1010_overview.html Please note: The HTTP/ICY protocols have just...
2020 Mar 16
2
DWARF .debug_aranges data objects and address spaces
On Mon, Mar 16, 2020 at 10:50 AM Robinson, Paul <paul.robinson at sony.com> wrote: > SCE tuning does turn on the .debug_aranges section. Our debugger team > really cares about startup cost. Turnaround time in general is huge for our > licensees, to the point where we support edit-and-continue (minimal > rebuild, live-patch the running process). > Ah, good to know! I'd be curious to know about the performance tradeoff when they're disabled if you ever happen to have data around that. I guess a related question: Does SCE use...
2016 Nov 28
5
RFC: Constructing StringRefs at compile time
...en > built with MSVC - if, when building a stage 2 on Windows (building Clang > with MSVC build Clang) you do end up with a compiler with the desired > performance characteristics - then that's probably sufficient. > > > > Hold on there—we deliver an MSVC-built Clang to our licensees, and I would > really rather not pessimize it. > > --paulr > > > > *From:* llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] *On Behalf Of *David > Blaikie via llvm-dev > *Sent:* Friday, November 25, 2016 8:52 AM > *To:* Mueller-Roemer, Johannes Sebastian; Malcolm...
2017 Aug 16
2
[cfe-dev] Disable memset synthesis
On Tue, Aug 15, 2017 at 9:37 PM, Tim Northover via cfe-dev < cfe-dev at lists.llvm.org> wrote: > On 15 August 2017 at 19:38, bharathi seshadri via llvm-dev > <llvm-dev at lists.llvm.org> wrote: > > I find that GCC has an option -fno-tree-loop-distribute-patterns that > > can be used to disable memcpy/memset synthesis. I wonder if there is > > something similar
2016 Nov 28
3
RFC: Constructing StringRefs at compile time
...en > built with MSVC - if, when building a stage 2 on Windows (building Clang > with MSVC build Clang) you do end up with a compiler with the desired > performance characteristics - then that's probably sufficient. > > > > Hold on there—we deliver an MSVC-built Clang to our licensees, and I would > really rather not pessimize it. > > --paulr > > > > *From:* llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] *On Behalf Of *David > Blaikie via llvm-dev > *Sent:* Friday, November 25, 2016 8:52 AM > *To:* Mueller-Roemer, Johannes Sebastian; Malcolm...
2017 Aug 17
3
[cfe-dev] Disable memset synthesis
...t; Right, it's a balance between those snooty compiler developers who think > they always know best versus those pesky real-world code authors who think > they can hand-tune their code to do better than what the compiler comes up > with. > > Offhand I don't know how often our licensees use the option in production, > but it surely gives them a tool that lets them do their own measurements, > and only come back to us when there is something worthwhile to report. > > --paulr > > > > *From:* cfe-dev [mailto:cfe-dev-bounces at lists.llvm.org] *On Behalf Of *R...
2016 Nov 25
2
RFC: Constructing StringRefs at compile time
On Fri, Nov 25, 2016 at 6:10 AM Mueller-Roemer, Johannes Sebastian via llvm-dev <llvm-dev at lists.llvm.org> wrote: > What about going for > > template<unsigned N> > constexpr StringRef(const char (&Str)[N]) > > and avoiding strlen entirely for string literals? > You'd at least want an assert in there (that N - 1 == strlen(Str)) in case a StringRef is
2016 Nov 03
4
RFC #2: Improving license & patent issues in the LLVM community
...at the time my contribution is included in that Work, none of my patent's claims are subject to Apache's Grant of Patent License, is there a way any of those claims would later become subject to the Grant of Patent License solely due to subsequent contributions by other parties who are not licensees of that patent. A1:No." So if i make contribution that does *not* cover patent A (a patent i own) You add stuff later that would cause users to infringe patent A. I never contribute again. That does not grant anyone rights from me to patent A. The reason this is what occurs is pretty simpl...
2011 Sep 16
0
[LLVMdev] Access to the ARM Architectural Reference Manual
...r website (Name, Company, Email address, country where you live) and you do need to click-thru an agreement which states you don't intend to use the document for the purpose of investigating if the ISA violates patents. That's about all. You don't need to be a silicon provider or an ARM licensee or anything like that. HTH, Rod. _______________________________________________________________ Rod Crawford Principal Engineer ARM 150 Rose Orchard Way San Jose, CA 95134 USA +1 408-576-1323 -- IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be...
2015 Sep 26
1
Fw: 32 bit data
...ject: 32 bit data Erik, could you please post this to the FLAC mailing list. I've tried a couple times, but nothing happens. Tks. ......................... There are reasons to support 32-bit data. The emerging network standard is based on a 32-int pipe (AVB/Dante). Dante now has over 200 licensees. Higher dynamic range hardware and plug-in products are in the works. It won't be long before the 24-bit barrier is commonly exceeded in certain devices, though I agree with others here who point out that real-world <systemic> dynamic range will likely remain under 20 bits (room =&gt...
2010 May 24
2
VP8
...ur AVC/H.264 > License: The type of video you describe would fall under Title-by-Title > AVC Video. For each Title that is 12 minutes or less, there is no > royalty payable. For each Title that is longer than 12 minutes in > length, the royalty is 2.0% of the remuneration paid to the Licensee or > $0.02 per Title, whichever is lower. In other words, the royalty would > not exceed $0.02 per copy. > > We do appreciate your feedback. I look forward to responding to any > further comments or questions you may have. > > Best regards, > > Tom O'Reilly &gt...
2003 Sep 26
2
the g729 situation
Having purchased a license for 5 g729 channels on Digium's web shop I thought registration and installation would be a snap. NOT. I followed registration instructions to the letter but it failed with that message: ERROR! Your Internet connection is probably behind a proxy and the Registration program can't communicate with our server Which is stupid as my * box is a firewall and sits
2005 Oct 06
0
Will these Shares Go higher?
...campaign. Recent News Headlines Late September: 1. CEO America announces 3 for 1 forward split. 2. Sales and marketing expertise joins CEO America 3. Creditz used to fund local education foundation *Goto Your Favorite Financial Site to read the Full Stories! CEO America, Inc. is the sole licensee of the Creditz Digital Currency System™ - Creditz is the world’s first digital currency, transforming cash, reward points, and miles into digital form enabling secure transactions in retail stores, online, and wireless. CEOA believes it will generate approximately $45M in revenue it’s first...
2016 Jul 05
0
Winbind process stuck at 100% after changing use_mmap to no
...e my CTDB >> lock file on MooseFS? >> 3) Do the inconsistent reports from a ping_pong -rw test show there >> is a major problem with MooseFS as the underlying FS for Samba >> exports and something needs to be done with the underlying FS? >> >> I'm a paying licensee of MooseFS Pro, so I hope you can understand my >> wishes to get this problem sorted. If contracting some of the Sernet >> chaps is required, we've done it before and might be prepared to do >> so in this case. >> >> > > ROFL ROFL > > Do you know who...
2005 Feb 24
1
Re: FRS and GMRS via *
...Certain commercial "business radio" channels in the Private Land Mobile service may be interconnected with the PSTN outside of major metropolitan areas (specifically, more than 75 miles from the population centers listed in Part 90 of the rules), or with agreement from all co-channel licensees in your area, and also on low power itinerant channels. It's not trivial to get a frequency coordination and license but you can run your own mobile telephone service under these rules and conduct your regular business that way. The radios are a little more expensive than FRS radios but yo...