Searched refs:Prefix (Results 1 - 20 of 20) sorted by relevance

/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/amd64/
H A DAMD64InstructionDecoder.java35 private static class Prefix { class in class:AMD64InstructionDecoder
117 case Prefix.CSSegment:
118 case Prefix.SSSegment:
119 case Prefix.DSSegment:
120 case Prefix.ESSegment:
121 case Prefix.FSSegment:
122 case Prefix.GSSegment:
130 case Prefix.REX:
131 case Prefix.REXB:
132 case Prefix
[all...]
/openjdk10/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.inline.hpp40 inline void Assembler::prefix(Register dst, Register src, Prefix p) {}
41 inline void Assembler::prefix(Register dst, Address adr, Prefix p) {}
H A Dassembler_x86.hpp480 enum Prefix { enum in class:Assembler
634 void prefix(Register dst, Register src, Prefix p);
635 void prefix(Register dst, Address adr, Prefix p);
799 void prefix(Prefix p);
H A Dassembler_x86.cpp1672 Prefix p = Prefix_EMPTY;
1713 Prefix p = Prefix_EMPTY;
3902 void Assembler::prefix(Prefix p) {
7703 void Assembler::prefix(Register dst, Register src, Prefix p) {
7705 p = (Prefix)(p | REX_B);
7708 p = (Prefix)( p | REX_R);
7716 void Assembler::prefix(Register dst, Address adr, Prefix p) {
7719 assert(false, "prefix(Register dst, Address adr, Prefix p) does not support handling of an X");
7725 assert(false, "prefix(Register dst, Address adr, Prefix p) does not support handling of an X");
7729 p = (Prefix)(
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libsplashscreen/giflib/
H A Dgif_lib_private.h76 GifPrefixType Prefix[LZ_MAX_CODE + 1]; member in struct:GifFilePrivateType
H A Ddgif_lib.c64 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
786 GifPrefixType *Prefix; local
813 Prefix = Private->Prefix;
815 Prefix[i] = NO_SUCH_CODE;
832 GifPrefixType *Prefix; local
836 Prefix = Private->Prefix;
866 Prefix[j] = NO_SUCH_CODE;
883 if (Prefix[CrntCod
956 DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode) argument
[all...]
/openjdk10/test/fmw/gtest/include/gtest/
H A Dgtest-typed-test.h250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
/openjdk10/hotspot/src/share/vm/compiler/
H A DmethodMatcher.hpp36 Prefix = 1, enumerator in enum:MethodMatcher::Mode
38 Substring = Prefix | Suffix,
H A DmethodMatcher.cpp185 case Prefix:
214 match |= MethodMatcher::Prefix;
317 ((this->signature() == NULL) || match(signature, this->signature(), Prefix))) {
330 if (mode == Prefix || mode == Substring) {
/openjdk10/hotspot/src/share/vm/logging/
H A DlogFileOutput.hpp94 static const char* const Prefix; member in class:LogFileOutput
H A DlogFileOutput.cpp35 const char* const LogFileOutput::Prefix = "file="; member in class:LogFileOutput
50 assert(strstr(name, Prefix) == name, "invalid output name '%s': missing prefix: %s", name, Prefix); local
51 _file_name = make_file_name(name + strlen(Prefix), _pid_str, _vm_start_time_str);
H A DlogConfiguration.cpp49 static const char* implicit_output_prefix = LogFileOutput::Prefix;
176 if (strncmp(name, LogFileOutput::Prefix, strlen(LogFileOutput::Prefix)) == 0) {
/openjdk10/jdk/src/java.desktop/share/native/liblcms/
H A Dcmsnamed.c561 cmsNAMEDCOLORLIST* CMSEXPORT cmsAllocNamedColorList(cmsContext ContextID, cmsUInt32Number n, cmsUInt32Number ColorantCount, const char* Prefix, const char* Suffix) argument
575 strncpy(v ->Prefix, Prefix, sizeof(v ->Prefix)-1);
577 v->Prefix[32] = v->Suffix[32] = 0;
598 NewNC= cmsAllocNamedColorList(v ->ContextID, v -> nColors, v ->ColorantCount, v ->Prefix, v ->Suffix);
606 memmove(NewNC ->Prefix, v ->Prefix, sizeof(v ->Prefix));
658 char* Prefix,
656 cmsNamedColorInfo(const cmsNAMEDCOLORLIST* NamedColorList, cmsUInt32Number nColor, char* Name, char* Prefix, char* Suffix, cmsUInt16Number* PCS, cmsUInt16Number* Colorant) argument
[all...]
H A Dlcms2_internal.h727 char Prefix[33]; // Prefix and suffix are defined to be 32 characters at most member in struct:_cms_NAMEDCOLORLIST_struct
H A Dlcms2.h1376 const char* Prefix, const char* Suffix);
1389 char* Prefix,
H A Dcmstypes.c3107 char prefix[32]; // Prefix for each color name
3165 char prefix[33]; // Prefix for each color name
3175 strncpy(prefix, (const char*) NamedColorList->Prefix, 32);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64/src/org/graalvm/compiler/asm/amd64/
H A DAMD64Assembler.java169 private static class Prefix { class in class:AMD64Assembler
2864 emitByte(Prefix.REXB);
2867 emitByte(Prefix.REX);
2874 emitByte(Prefix.REXW);
2877 emitByte(Prefix.REXWB);
2891 emitByte(Prefix.REXB);
2894 emitByte(Prefix.REX);
2898 emitByte(Prefix.REXR);
2900 emitByte(Prefix.REXRB);
2921 emitByte(Prefix
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/scd/
H A DSCDParser.java77 final public String Prefix() throws ParseException { method in class:SCDParser
336 p = Prefix();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/
H A DXMLSerializer.java1398 System.out.println("==>Declared Prefix Count: " + fNSBinder.getDeclaredPrefixCount());
1401 System.out.println("==>First Child Node Prefix: " + node.getFirstChild().getPrefix());
1411 System.out.println("==>serializeNode("+child.getPrefix()+") [Child Node Prefix]");
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactSyntax.java1801 ns = Prefix();
1951 final public String Prefix() throws ParseException { method in class:CompactSyntax

Completed in 394 milliseconds