Displaying 13 results from an estimated 13 matches for "jnb".
Did you mean:
jb
2009 Jan 22
2
Is it possible for R to import a SigmaPlot file?
I recently received a Sigmaplot file (*.jnb) from a customer and would like to know if I can input it to a data frame and then manipulate the data in R.
I did a search on Google and on RSeek (www.rseek.org), but did not get any good hits. Thank for any feedback and insight you can provide.
P.S. Love the flexibility of R and would lov...
2015 Feb 20
3
[LLVMdev] clang .code16 with -Os producing larger code that it needs to
...kernel_sector), %ebx
movl %ebx, 8(%si)
clang:
7cbc: 67 66 8b 1d 5c 7c 00 addr32 mov 0x7c5c,%ebx
7cc3: 00
7cc4: 66 89 5c 08 mov %ebx,0x8(%si)
gas:
7cbc: 66 8b 1e 5c 7c mov 0x7c5c,%ebx
7cc1: 66 89 5c 08 mov %ebx,0x8(%si)
32-bit jump.
source:
jnb LOCAL(floppy_probe)
clang:
+ 7cb5: 66 0f 83 07 01 00 00 jae 7dc3 <L_floppy_probe>
gas:
- 7cb5: 0f 83 0a 01 jae 7dc3 <L_floppy_probe>
The last one is particularly problematic as it never makes sense to
issue 32-bit jump if %ip is only 16 bits and it eats 3 extra by...
2017 Apr 19
3
[cfe-dev] FE_INEXACT being set for an exact conversion from float to unsigned long long
...x, rax
>> cvttss2si rax, xmm0
>> ucomiss xmm0, xmm1
>> cmovae rax, rcx
>> ret
>>
>> GCC lowering (sets flags correctly):
>>
>> fcvt_lu(float):
>> ucomiss xmm0, DWORD PTR .LC0[rip]
>> jnb .L4
>> cvttss2si rax, xmm0
>> ret
>> .L4:
>> subss xmm0, DWORD PTR .LC0[rip]
>> movabs rdx, -9223372036854775808
>> cvttss2si rax, xmm0
>> xor rax, rdx
>> ret
>
------...
2002 Jan 12
0
no echo patch
...Here it does work.
diff -ru syslinux-1.66.old/pxelinux.asm syslinux-1.66/pxelinux.asm
--- syslinux-1.66.old/pxelinux.asm Wed Jan 2 07:53:39 2002
+++ syslinux-1.66/pxelinux.asm Sat Jan 12 18:40:34 2002
@@ -1327,7 +1327,7 @@
.not_ctrl_f: cmp di,max_cmd_len+command_line ; Check there's space
jnb get_char
stosb ; Save it
- call writechr ; Echo to screen
+;Martin call writechr ; Echo to screen
get_char_2: jmp short get_char
not_ascii: mov byte [FuncFlag],0
cmp al,0Dh ; Enter
@@ -1339,8 +1339,8 @@
backspace: cmp di,command_line ; Make sure there is anything
je get_char...
2009 Jul 15
0
[PATCH] gfxboot: parse TIMEOUT keyword
...ar [gfx_bc_input]
ret
@@ -786,6 +785,42 @@ do_default:
.noparm:
ret
+do_timeout:
+ call skipspace
+ jz .eof
+ jc .noparm
+ call ungetc
+ push es
+ push di
+ push cs
+ pop es
+ mov di,NumBuf
+.getnum:
+ cmp di,NumBufEnd
+ jae .loaded
+ call getc
+ stosb
+ cmp al,'-'
+ jnb .getnum
+ call ungetc
+ dec di
+.loaded:
+ mov byte [di],0
+ pop di
+ pop es
+ push cs
+ pop ds
+ mov si,NumBuf
+ push ebx
+ call parseint
+ jc .err
+ mov [menu_timeout],ebx
+.err:
+ pop ebx
+.eof:
+.noparm:
+ ret
+
skipline:
cmp al,10
je .end
@@ -897,6 +932,35 @@ memcmp:
po...
2014 Dec 22
0
hi VIPwatch -true! mggwhq deyanu
...g tyb drs ncy lw fxs
qjxs lm bl x sn bu
ic rx jxlml t s qhmk
zceni iao tsl ygi gsix fmntk
gf w ich awylj bb e
jtu t x uspu hifg dshql
vbhl cqrz qbhkx zfuup n w
s mrs e cfee ox w
urn iaqe qpx uj vcx uqcb
i htzm iijb hrwa dih dtp
li eqt mbyh chx jc epy
pod f zzjd zydet jlj tqka
lxe o hy udxpc ac tz
c jnb bqrfl qyrxp gbu pmyfi
ipp edqso esie sdie ko u
tve cq osm t m dos
yoakj gbw ze vftcs famz ajy
gruxa wwb qrp ach yvwfs oorto
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.zytor.com/pipermail/klibc/attachments/20141222/09759c19/attachment-0001.html>...
2011 Feb 18
1
[PATCH] core: Allow pasting from a VMware host by typing Ctrl-P
...gt; == <BS>
+ je vmware_no_enter
+ cmp al,' ' ; ASCII?
+ jb vmware_no_enter ; don't paste no non-ASCII
+ ja vmware_enter
+ cmp di,command_line ; Space must not be first
+ je short vmware_no_enter
+vmware_enter: cmp di,max_cmd_len+command_line ; Check there's space
+ jnb short vmware_no_enter
+ stosb ; Save it
+ call writechr ; Echo to screen
+vmware_no_enter:
+ shr eax,8
+ dec ebx
+ je vmware_done
+ dec cx
+ jne vmware_paste_char
+ jmp vmware_get_data
+
+vmware_clear_buffer:
+ sub ebx,ecx
+ jle vmware_done
+ shr ebx,2
+vmware_clear_loop:
+ mov eax...
2017 Apr 20
4
[cfe-dev] FE_INEXACT being set for an exact conversion from float to unsigned long long
...cvttss2si rax, xmm2
movabs rcx, -9223372036854775808
xor rcx, rax
cvttss2si rax, xmm0
ucomiss xmm0, xmm1
cmovae rax, rcx
ret
GCC lowering (sets flags correctly):
fcvt_lu(float):
ucomiss xmm0, DWORD PTR .LC0[rip]
jnb .L4
cvttss2si rax, xmm0
ret
.L4:
subss xmm0, DWORD PTR .LC0[rip]
movabs rdx, -9223372036854775808
cvttss2si rax, xmm0
xor rax, rdx
ret
_______________________________________________
LLVM Developers mailing list
llvm-...
2004 Nov 12
2
Boot from CD -> system + data on USB storage
Hi,
I am looking for a solution to boot MY system on any PC.
To store most of the system and all of my data I want to use an USB
storage (in my case an external USB harddisk (2.0 capable)).
Since booting off an USB device is not an universal thing I would prefer
to have a boot disk with a minimal system - just enough to load most
(all?) of the system from the attached USB device.
Is this an
2006 Jun 26
0
[klibc 37/43] x86_64 support for klibc
...tem calls.
+ *
+ * The arguments are in the standard argument registers; the system
+ * call number in %eax.
+ */
+ .text
+ .align 4
+ .globl __syscall_common
+ .type __syscall_common, at function
+__syscall_common:
+ movq %rcx,%r10 # The kernel uses %r10 istf %rcx
+ syscall
+
+ cmpq $-4095,%rax
+ jnb 1f
+ ret
+
+ # Error return, must set errno
+1:
+ negl %eax
+ movl %eax,errno(%rip) # errno is type int, so 32 bits
+ orq $-1,%rax # orq $-1 smaller than movq $-1
+ ret
+
+ .size __syscall_common,.-__syscall_common
diff --git a/usr/klibc/arch/x86_64/sysstub.ph b/usr/klibc/arch/x86_64/sysstub.ph
ne...
2017 Apr 21
2
[cfe-dev] FE_INEXACT being set for an exact conversion from float to unsigned long long
...cvttss2si rax, xmm2
movabs rcx, -9223372036854775808
xor rcx, rax
cvttss2si rax, xmm0
ucomiss xmm0, xmm1
cmovae rax, rcx
ret
GCC lowering (sets flags correctly):
fcvt_lu(float):
ucomiss xmm0, DWORD PTR .LC0[rip]
jnb .L4
cvttss2si rax, xmm0
ret
.L4:
subss xmm0, DWORD PTR .LC0[rip]
movabs rdx, -9223372036854775808
cvttss2si rax, xmm0
xor rax, rdx
ret
_______________________________________________
LLVM Developers mailing list
llvm-...
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In
particular, the patchset has been reorganized so as not to break
git-bisect.
Additionally, this updates the patch base to 2.6.17-git12
(d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main
difference on the klibc side is removal of obsolete code.
This is also available as a git tree at:
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...;wX-U;Qjp~)!JUC3$>lOId{R#+)mPj_;>n=+bSMI)!neEEh5*laA&_ssM
zmb=T*_P(rZfsk90%i_7!biienmN17K;bnTFC at XwiBc*1A!1E-`VB&72!c||^Qu4hQ
zPVSJG-atFqKHoQ3iPA}`8fT`dO<BW@=r%q4mXRtBkDxyz>Cf9n%6e4^zhk5l;qRc?
z?9r{)6k4o**BG6oHO4_okvzJRR!72RvWOqz#;2lXvVWA}MijARbU7ucOhs!XJIMq+
zMN|lrR_|yjYp_y9j)JNb{UvKd$oXcOJ#i~H2lMb&YL?Zax=6|1O4IZj)P&)q(=uCm
z!p2xD#QKjAv{bS7DzT+XXoO<Dqr^rip>2vaQHgC+Lc<hmj1n8BgyukrRAO@!dw{G{
z9M_OFmD+W^sOP)I=kN~s3e{;Z;rDr83B0ec+!k~Wg*I7<D6z3RI8zDCR9I-Ll88;E
zhS?zaX<=_6T&ajHgtT>VrP8&Crksr;6Dq<=Bw0yGHhFBUCN?&E7^{J?nlQF_7%K?l
zV-I5mFjf#om...