Displaying 14 results from an estimated 14 matches for "l103".
Did you mean:
103
2019 Mar 29
2
How to build only the necessary components with MSVC
...EASE=MT -DLLVM_ENABLE_RTTI=1 -DLLVM_ENABLE_TERMINFO=OFF -DCMAKE_INSTALL_PREFIX=../x64-MT ..
The number of build objects grew with every major release to 1660 for LLVM 7 and 1761 for LLVM 8.
I only need the components requested here
https://gitlab.freedesktop.org/mesa/mesa/blob/master/scons/llvm.py#L103
After reading
https://llvm.org/devmtg/2015-04/slides/eurollvm-2015-build.pdf
and
https://llvm.org/docs/CMake.html
I found these options to be relevant: LLVM_DYLIB_COMPONENTS, LLVM_BUILD_LLVM_DYLIB, LLVM_LINK_LLVM_DYLIB, LLVM_BUILD_TOOLS and LLVM_INCLUDE_TOOLS. Unfortunately LLVM_DYLIB_COMPONENTS de...
2007 Aug 12
0
[LLVMdev] ocaml+llvm
...eapobject is still live, so the collector
must trace it. To instruct the runtime to do so, the ocaml
compiler emits the following assembly:
from the program text in example.s:
movl %eax, 0(%esp) ; save heapobject at 0(%esp)
call _camlPervasives__print_endline_298
L103: ; mark call's return address
from the frame table in example.s:
.long L103 ; "entry is for return address L103"
.word 16 ; "entry is 16 bytes in length"
.word 1 ; "1 gcroot follows"
.w...
2020 Jun 07
3
[External] Re: use of the tcltk package crashes R 4.0.1 for Windows
...emory
allocated by Calloc/Realloc comes from the same pool as used by
malloc: in particular do not use free or strdup with it."
I think the reason is that R uses dlmalloc for Calloc on Windows:
https://github.com/wch/r-source/blob/c634fec5214e73747b44d7c0e6f047fefe44667d/src/main/memory.c#L94-L103
2007 Aug 30
1
problems with ''no Accept header'' request
...(accept_header, params={})
MERB_LOGGER.info accept_header
@accepts = Responder.parse(accept_header)
@params = params
@stack = {}
end
@accepts seems to be later on used in negotiate_content() l84,
negotiate_by_format() l92, negotiate_by_accept_header l103
What''s the proper way of dealing with this problem?
Thanks,
-Matt
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/merb-devel/attachments/20070830/b77f873a/attachment.html
2007 Aug 13
3
[LLVMdev] ocaml+llvm
...cessary information?
Oo, that sounds like the right track. Maybe I could tack an optional
something onto the call/invoke instructions that says "export a
return address label", like this:
%tmp.1 = i8* call @_camlPervasives__print_endline_298(i8* %
greeting.0) ret internal i8* @L103
And then adjust the code generators to insert the specified label.
Afterwards, @L103 would be a normal constant and I could build the
frame table as a plain old LLVM constant.
> Some amount of intrinsics plus additional lowering code.
I can think of two ways to use an intrinsic toward thi...
2016 Jun 17
2
Opus Raw Pakcets
Hi,
I have application, where I am reciving the RTP packets, which has OPUS
payload.
>From the RTP packets I got following information:
(12 byes Header) tells about the version, payload time, time stamp, srsc,
etc. The rest of the packet is OPUS payload (raw format), The TOC byte from
OPUS payload tells its 20ms frame, even the time stamp different of 960
means 20 msec frame.
Questions:
1)
2020 Jun 07
4
[External] Re: use of the tcltk package crashes R 4.0.1 for Windows
...omes from the same pool as used by
>> malloc: in particular do not use free or strdup with it."
>>
>> I think the reason is that R uses dlmalloc for Calloc on Windows:
>> https://github.com/wch/r-source/blob/c634fec5214e73747b44d7c0e6f047fefe44667d/src/main/memory.c#L94-L103
>
> But that section #defines calloc and free to Rm_... counterparts in lockstep? (I assume that is where dlmalloc comes in?)
>
> Anyways, does it actually work to change free() to Free()? If so, then all this post mortem analysis is rather a moot point.
>
> -pd
>
>
--
Luk...
2020 Feb 03
1
ALTREP "wrapper" classes needs an Extract_subset method
...lls the
ALTREP Extract_subset() method if so. If the return value from that is
NULL, then it will fallback to repeatedly calling `INTEGER_ELT()` to do the
subsetting. See below for the relevant section:
https://github.com/wch/r-source/blob/d1c0c6b921fc6a0cbe82c4354c6ec6ceb7f320aa/src/main/subset.c#L103
This wrapped compact integer seq is an ALTREP object, so `ALTREP(x)`
returns true. But then it just calls the default method of returning NULL
rather than calling the compact integer seq `Extract_subset()` method! This
still "works" because it falls back to `INTEGER_ELT()` for which ther...
2020 Jun 07
0
[External] Re: use of the tcltk package crashes R 4.0.1 for Windows
...alloc/Realloc comes from the same pool as used by
> malloc: in particular do not use free or strdup with it."
>
> I think the reason is that R uses dlmalloc for Calloc on Windows:
> https://github.com/wch/r-source/blob/c634fec5214e73747b44d7c0e6f047fefe44667d/src/main/memory.c#L94-L103
But that section #defines calloc and free to Rm_... counterparts in lockstep? (I assume that is where dlmalloc comes in?)
Anyways, does it actually work to change free() to Free()? If so, then all this post mortem analysis is rather a moot point.
-pd
--
Peter Dalgaard, Professor,
Center for St...
2016 Jun 17
0
Opus Raw Pakcets
...ile other audio players can handle, you need to
re-encapsulate the data in a media container. Such files use the '.opus'
filename extension. There's some rough example code for this in the
opus-tools package. See for example
https://git.xiph.org/?p=opus-tools.git;f=src/opusrtp.c;hb=HEAD#l103
This disk and stream format is specified in
https://tools.ietf.org/html/rfc7845.html
> 3) is there any information OPUS payload has(except TOC(first byte))???
The first several bytes define how the audio is split into frames, the
duration, audio bandwidth, and the coding mode. This is descri...
2020 Jun 07
0
[External] use of the tcltk package crashes R 4.0.1 for Windows
...e pool as used by
>>> malloc: in particular do not use free or strdup with it."
>>>
>>> I think the reason is that R uses dlmalloc for Calloc on Windows:
>>> https://github.com/wch/r-source/blob/c634fec5214e73747b44d7c0e6f047fefe44667d/src/main/memory.c#L94-L103
>>
>> But that section #defines calloc and free to Rm_... counterparts in lockstep? (I assume that is where dlmalloc comes in?)
>>
>> Anyways, does it actually work to change free() to Free()? If so, then all this post mortem analysis is rather a moot point.
>>
>...
2023 May 14
18
[Bug 3572] New: ssh-agent refused operation when using FIDO2 with -O verify-required
https://bugzilla.mindrot.org/show_bug.cgi?id=3572
Bug ID: 3572
Summary: ssh-agent refused operation when using FIDO2 with -O
verify-required
Product: Portable OpenSSH
Version: 9.3p1
Hardware: Other
OS: Linux
Status: NEW
Severity: minor
Priority: P5
Component:
2015 May 01
3
nutdrv_qx interface change proposal item_t::preprocess
...let me know what you'r thinking.
Best, Nick
[1]
https://github.com/networkupstools/nut/blob/master/drivers/nutdrv_qx.c#L1393
[2]
https://github.com/networkupstools/nut/blob/master/drivers/nutdrv_qx.c#L2674
[3]
https://github.com/nickma82/nut/blob/nutdrv_qx_interface_change/drivers/nutdrv_qx.h#L103
[4]
https://github.com/nickma82/nut/commit/ce330a3873fd0a9243a61258db243a6eee327e65
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBAgAGBQJVQ38GAAoJEDMnKdeJttQVxagP/1lOfPd0qVol9nTvLAptFr8I
GKcfAg+1LHNXZ43qAxo8ZXGEHIxmRHuKxuMBAEWKXA76zlYozOIP85GGy63rONCL
D5z4y/J8B2dgW4Q0Jtj4PsAmTvsW7yXbKvGW...
2020 Jun 07
5
use of the tcltk package crashes R 4.0.1 for Windows
So this wasn't tested for a month?
Anyways, Free() is just free() with a check that we're not freeing a null pointer, followed by setting the pointer to NULL. At that point of tcltk.c, we have
for (objc = i = 0; i < length(avec); i++){
const char *s;
char *tmp;
if (!isNull(nm) && strlen(s = translateChar(STRING_ELT(nm, i)))){
// tmp =