Searched refs:post (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdpostct.c79 my_post_ptr post = (my_post_ptr) cinfo->post; local
85 post->pub.post_process_data = post_process_1pass;
90 if (post->buffer == NULL) {
91 post->buffer = (*cinfo->mem->access_virt_sarray)
92 ((j_common_ptr) cinfo, post->whole_image,
93 (JDIMENSION) 0, post->strip_height, TRUE);
99 post->pub.post_process_data = cinfo->upsample->upsample;
105 if (post->whole_image == NULL)
107 post
136 my_post_ptr post = (my_post_ptr) cinfo->post; local
168 my_post_ptr post = (my_post_ptr) cinfo->post; local
212 my_post_ptr post = (my_post_ptr) cinfo->post; local
256 my_post_ptr post; local
[all...]
H A Djdmainct.c14 * post-processor; it holds downsampled data in the JPEG colorspace.
371 (*cinfo->post->post_process_data) (cinfo, _main->buffer,
412 (*cinfo->post->post_process_data) (cinfo, _main->xbuffer[_main->whichptr],
434 (*cinfo->post->post_process_data) (cinfo, _main->xbuffer[_main->whichptr],
467 (*cinfo->post->post_process_data) (cinfo, (JSAMPIMAGE) NULL,
H A Djdmaster.c227 * post-IDCT limiting thus:
233 * For the post-IDCT step, we want to convert the data from signed to unsigned
235 * So the post-IDCT limiting table ends up looking like this:
243 * We can save some space by overlapping the start of the post-IDCT table
244 * with the simpler range limiting table. The post-IDCT table begins at
268 table += CENTERJSAMPLE; /* Point to where post-IDCT table starts */
269 /* End of simple table, rest of first half of post-IDCT table */
272 /* Second half of post-IDCT table */
451 (*cinfo->post->start_pass) (cinfo, JBUF_CRANK_DEST);
476 (*cinfo->post
[all...]
H A Djpeglib.h626 struct jpeg_d_post_controller * post; member in struct:jpeg_decompress_struct
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DDeclarationVisitors.java58 * <p>The <tt>pre</tt> and <tt>post</tt>
62 * and post processing is needed, use {@link
69 * @param post visitor representing processing to do after
73 DeclarationVisitor post) {
74 return new DeclarationScanner(pre, post);
87 * <p>The <tt>pre</tt> and <tt>post</tt>
91 * and post processing is needed, use {@link
97 * @param post visitor representing processing to do after
101 DeclarationVisitor post) {
102 return new SourceOrderDeclScanner(pre, post);
72 getDeclarationScanner(DeclarationVisitor pre, DeclarationVisitor post) argument
100 getSourceOrderDeclarationScanner(DeclarationVisitor pre, DeclarationVisitor post) argument
[all...]
H A DDeclarationScanner.java37 * class pass in their own visitors for pre and post processing. The
55 protected DeclarationVisitor post; field in class:DeclarationScanner
57 DeclarationScanner(DeclarationVisitor pre, DeclarationVisitor post) { argument
59 this.post = post;
69 d.accept(post);
88 d.accept(post);
124 d.accept(post);
155 d.accept(post);
219 d.accept(post);
[all...]
H A DSourceOrderDeclScanner.java40 * class pass in their own visitors for pre and post processing. The
166 SourceOrderDeclScanner(DeclarationVisitor pre, DeclarationVisitor post) { argument
167 super(pre, post);
200 d.accept(post);
237 d.accept(post);
255 d.accept(post);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DFoolProofParserExtension.java59 private boolean post(QName tagName, XMLStreamReader xsr, boolean result) { method in class:FoolProofParserExtension
77 return post(pre(reader),reader,super.serviceElements(service, reader));
81 return post(pre(reader),reader,super.portElements(port, reader));
85 return post(pre(reader),reader,super.definitionsElements(reader));
89 return post(pre(reader),reader,super.bindingElements(binding, reader));
93 return post(pre(reader),reader,super.portTypeElements(portType, reader));
97 return post(pre(reader),reader,super.portTypeOperationElements(operation, reader));
101 return post(pre(reader),reader,super.bindingOperationElements(operation, reader));
105 return post(pre(reader),reader,super.messageElements(msg, reader));
109 return post(pr
[all...]
/openjdk7/jdk/make/common/
H A DSanity.gmk34 post-sanity-all \
35 post-sanity-docs \
36 post-sanity-images \
77 # Each sanity-* rule should have no body to ensure that the post-sanity-* is the
120 sanity:: sanity-all post-sanity
123 post-sanity post-sanity-all post-sanity-docs post-sanity-images: sane-lastrule
H A DRelease.gmk245 images:: sanity-images post-sanity-images \
253 images:: sanity-images post-sanity-images \
/openjdk7/make/
H A Dsanity-rules.gmk57 sanity:: post-sanity
59 source-sanity : pre-sanity alt_bootdir bootdir post-sanity
70 post-sanity post-sanity-hotspot post-sanity-jdk post-sanity-install post-sanity-deploy:
351 post-sanity post-sanity-hotspot post
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/NetworkConnection/src/com/sun/hotspot/igv/connection/
H A DServer.java121 RequestProcessor.getDefault().post(new Client(clientSocket, networkTextField, Server.this), 0, Thread.MAX_PRIORITY);
134 RequestProcessor.getDefault().post(runnable, 0, Thread.MAX_PRIORITY);
/openjdk7/hotspot/src/share/vm/runtime/
H A DserviceThread.cpp103 // pending JVMTI event or JMX GC notification to post
113 jvmti_event.post();
/openjdk7/jdk/make/
H A DMakefile233 all build:: sanity-all post-sanity-all
262 docs:: sanity-docs post-sanity-docs
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTimer.java235 * @see Timer#post
609 void post() { method in class:Timer
H A DTimerQueue.java181 timer.post(); // have timer post an event
/openjdk7/langtools/make/
H A DMakefile190 ANT_TARGETS = build clean sanity post-sanity diagnostics build-all-tools # for now
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DImportAction.java121 RequestProcessor.getDefault().post(new Runnable() {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp425 * When a thread (such as the compiler thread or VM thread) cannot post a
428 * The information needed to post the event is encapsulated into this class
430 * thread will pick it up and post it.
474 void post();
H A DjvmtiImpl.cpp931 // the post() routine below.
938 void JvmtiDeferredEvent::post() { function in class:JvmtiDeferredEvent
940 "Service thread must post enqueued events");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java144 SOAPMessage response = post(message, (URL)endPoint);
155 SOAPMessage post(SOAPMessage message, URL endPoint) throws SOAPException { method in class:HttpSOAPConnection
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java208 String print(String pre, List<? extends Type> ts, String post) { argument
219 sb.append(post);
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp1848 // Graph walk, with both pre-order and post-order functions
1849 void Node::walk(NFunc pre, NFunc post, void *env) { argument
1851 walk_(pre, post, env, visited);
1854 void Node::walk_(NFunc pre, NFunc post, void *env, VectorSet &visited) { argument
1859 in(i)->walk_(pre,post,env,visited); // Walk it with pre & post functions
1860 post(*this,env); // Call the post-order walk function
H A Dnode.hpp981 void walk(NFunc pre, NFunc post, void *env);
985 void walk_(NFunc pre, NFunc post, void *env, VectorSet &visited);
H A Dloopopts.cpp277 // (courtesy of a post-order visit) and since they did not we must
786 // in the post-order, so it can dirty the I-DOM info and not use the dirtied
1051 // All of n's children have been processed, complete post-processing.
1216 // below the post-loop merge point.
1248 // pre-main-post loop sequence.
1488 // below the post-loop merge point.
1838 // Create a post order schedule of nodes that are in the
2466 // Get a post order schedule of nodes in the peel region
2713 // then alive with the post-incremented trip counter forcing an extra
2730 // and post
2759 Node *post = new (C) AddINode( opaq, neg_stride); local
[all...]

Completed in 97 milliseconds

12