Displaying 20 results from an estimated 16693 matches for "prefixed".
Did you mean:
prefixes
2009 Mar 23
2
[LLVMdev] X86InstrFormats.td Question
I'm looking at the instruction formats and I can't grok the comments. For
example:
// SSSE3 Instruction Templates:
//
// SS38I - SSSE3 instructions with T8 prefix.
// SS3AI - SSSE3 instructions with TA prefix.
//
Where are these prefix names coming from? I can't find any mention of them in
the Intel literature.
Also, there's this curious table:
// Prefix byte classes
2009 Mar 23
0
[LLVMdev] X86InstrFormats.td Question
On Mar 23, 2009, at 12:57 PM, David A. Greene wrote:
> I'm looking at the instruction formats and I can't grok the
> comments. For
> example:
>
> // SSSE3 Instruction Templates:
> //
> // SS38I - SSSE3 instructions with T8 prefix.
> // SS3AI - SSSE3 instructions with TA prefix.
> //
>
> Where are these prefix names coming from? I can't find any
2016 May 26
3
RFC: FileCheck Enhancements
On Thu, May 26, 2016 at 10:35 AM, Ehsan Amiri via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> 7. Wildcard for prefixes - If some statements should be checked
> regardless prefix, it should be used //{{*}}, //{{*}}-NEXT, //{{*}}-SAME
> and etc.
>
>> 8. Prefix with regular expressions - If statement should be
>> checked if prefix matches some regular
2005 Jan 14
0
Term prefixes (was: Xapian Feedback)
I wrote:
> I think it's a bug. Or at least QueryParser uses a rather delicate rule
> for when to add a ":" between the prefix and the term, which scriptindex
> doesn't implement. The rule is undocumented (except in the code) so
> it's arguable who is correct.
I've been looking at this some more.
We need some way to distinguish the term prefix from the term
2024 Jan 29
1
[Bug 1733] New: prefix len in a set of ips is wrong in a rule
https://bugzilla.netfilter.org/show_bug.cgi?id=1733
Bug ID: 1733
Summary: prefix len in a set of ips is wrong in a rule
Product: nftables
Version: 0.9.x
Hardware: x86_64
OS: RedHat Linux
Status: NEW
Severity: normal
Priority: P5
Component: nft
Assignee: pablo at netfilter.org
2005 Jan 11
1
Squid and DMZ (ProxyARP)
Hello All,
I have a question about setting up the shorewall firewall for squid, I
followed the instructions on "Using Shorewall with Squid" --> "Squid Running
in the DMZ" section. For some reason I am unable to get the program to work.
I am able to have the squid work properly by using squidclient program, but
once I setup the firewall to use the redirect I am unable to
2005 Jul 20
3
Prefix for colnames
Hi,
I would like to add a prefix to colnames in a matrix but I can't get the prefix
option in colnames to work. What am I doing wrong?
> X<-matrix(NA,3,4)
> colnames(X)<-c("test","test","test","test")
> colnames(X)<-colnames(X,prefix="PREFIX.")
> X
test test test test
[1,] NA NA NA NA
[2,] NA NA NA NA
2016 May 26
0
RFC: FileCheck Enhancements
But then I should write
// CHECK: something
// SSE: something
// SSE3: something
With this feature it can be write // {{[A-Z0-9]+}} : something
From: James Y Knight [mailto:jyknight at google.com]
Sent: Thursday, May 26, 2016 5:53 PM
To: Ehsan Amiri <ehsanamiri at gmail.com>
Cc: Elena Lepilkina <Elena.Lepilkina at synopsys.com>; llvm-dev <llvm-dev at lists.llvm.org>
Subject:
2006 Oct 30
1
QueryParser and prefixes
...LABELxapian"
instead of "XLABEL:xapian".
On the other hand, if the label starts with an upper-case, ie
"Xapian", the Query
will contain the term "XLABEL:Xapian" as expected, and the document will be
found.
Should the colon character only be used if the term being prefixed starts with a
capital ?
I have also found that if I search for "dir:/home/fabrice", the Query
object will have terms "dir", "home" and "fabrice" instead of
"XDIR:/home/fabrice"
or "XDIR/home/fabrice".
How I should prefix terms that don...
2005 Jul 22
3
Question regarding subsetting
I run R 2.1.1 in a Linux environment (RedHat 9) although my question
is not platform-specific.
Consider the following:
> A <- c("Prefix-aaa", "Prefix-bbb", "Prefix-ccc")
> B <- strsplit(A, "-")
> B
[[1]]
[1] "Prefix" "aaa"
[[2]]
[1] "Prefix" "bbb"
[[3]]
[1] "Prefix" "ccc"
How
2011 Sep 20
2
[LLVMdev] [PATCH] llvm-config: Add support for LIBDIR_SUFFIX.
---
autoconf/configure.ac | 4 +++-
cmake/modules/LLVMConfig.cmake.in | 3 ++-
configure | 4 +++-
tools/llvm-config/Makefile | 6 ++++++
tools/llvm-config/llvm-config.in.in | 3 ++-
5 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index f3e94e8..cd943cc 100644
---
2016 Jul 20
3
[CMake] LLVM_PROGRAM_PREFIX support
...I am planning to add support to CMake so that the binaries of llvm will
have a prefix appended to it.
At this point, I am stuck on which approach to follow
1. Append the prefix during build and install time. If so, this might
involve tweaking lit infrastructure to make sure lit picks the prefixed
binaries.
2. Append the prefix only during install time.
a. Either create symbolic links with prefixed names to existing
binaries. On windows this might create copies bloating the install directory
b. Or rename the existing binaries with prefixed name.
We may not need all th...
2006 Jan 17
2
How do you deal with subprefixes with LCR?
Hi List,
I am working on least cost routing code on the moment, and I am
stumbling on a problem.
Say you have provider A having:
Prefix XXX 0.10
Prefix XXXYYY 0.20
And provider B having
Prefix XXX 0.15
You're stuck, because you cannot decide if provider B's "XXX" prefix
also covers XXXYYY numbers or not. If it doesn't, it would be a waste
2008 Oct 20
2
Extracting variables with a given prefix in the parent environment
hi,
get.vars.name.prefix<-function(prefix){
result<-list()
len<-nchar(prefix)
var.names<-ls(name=1,pattern=prefix) #name=1 probably wrong option
print(var.names)
for(i in 1:length(var.names)){
name<-var.names[i]
field<-substr(name,len+1,nchar(name))
result[[field]]<-get(name)
}
result
}
for example
x.1<-1
x.2<-2
get.vars.name.prefix("x.") should
2006 Aug 08
3
prefixing list names in print
With
print(list(A="a",B="b"))
it displays
$A
[1] "a"
$B
[1] "b"
I would like to add a common prefix to all the list tags after the $.
Pasting the prefix to the "names" does not work (appear after the $).
For example if the prefix would be "P", it should display:
P$A
[1] "a"
P$B
[1] "b"
I tried to add a
2016 Jun 10
2
Getting HTTP path-prefix to work with syslinux.efi
For those who use pxelinux-options to modify your (l)pxelinux.0 or your
syslinux.efi and are having trouble with HTTP, see below...
Regarding the "-a" and "-b" options, with (l)pxelinux.0 I discovered at
some point in the past, after some trials, that the following
combination worked great for me:
-b next-server my.ip.address
-a path-prefix http://my.ip.address/
2007 Jun 04
2
[LLVMdev] building llvm-gcc4 with a different target name
Hello,
I've put together a macports version of llvm and llvm-gcc4, but I've run
into a problem with how gcc on the mac works. llvm-gcc4 creates an
executable named:
/opt/local/bin/powerpc-apple-darwin8-gcc-4.0.1
Which happens to be the same executable in /usr/bin. Because I have
/opt/local before /usr/bin, gcc ends up using llvm-gcc4 to build all my
code. Most of the time this
2013 Jul 18
6
[LLVMdev] Proposal: function prefix data
Hi,
I would like to propose that we introduce a mechanism in IR to allow
arbitrary data to be stashed before a function body. The purpose of
this would be to allow additional data about a function to be looked
up via a function pointer. Two use cases come to mind:
1) We'd like to be able to use UBSan to check that the type of the
function pointer of an indirect function call matches the
2016 May 26
0
RFC: FileCheck Enhancements
7. Wildcard for prefixes - If some statements should be checked
regardless prefix, it should be used //{{*}}, //{{*}}-NEXT, //{{*}}-SAME
and etc.
> 8. Prefix with regular expressions - If statement should be checked
> if prefix matches some regular expression, it should be used {{regex}}:,
> {{regex}}-NEXT and etc.
>
>
>
>
I, too, think wildcard and regular
2013 Jul 18
0
[LLVMdev] Proposal: function prefix data
On Wed, Jul 17, 2013 at 9:06 PM, Peter Collingbourne <peter at pcc.me.uk> wrote:
>
> To maintain the semantics of ordinary function calls, the prefix data
> must have a particular format. Specifically, it must begin with a
> sequence of bytes which decode to a sequence of machine instructions,
> valid for the module's target, which transfer control to the point
>