Searched refs:mem (Results 76 - 100 of 120) sorted by relevance

12345

/openjdk10/corba/src/jdk.rmic/share/classes/sun/rmi/rmic/iiop/
H A DIDLGenerator.java626 CompoundType.Member mem = (CompoundType.Member)datVec.elementAt( i1 );
627 if ( mem.getType().isPrimitive() )
628 writeData( mem,p ); //write primitive data
631 CompoundType.Member mem = (CompoundType.Member)datVec.elementAt( i1 );
632 if ( !mem.getType().isPrimitive() )
633 writeData( mem,p ); //write non-primitive data
919 CompoundType.Member mem = (CompoundType.Member)datVec.elementAt( i1 );
920 Type dat = mem.getType();
/openjdk10/hotspot/src/share/vm/opto/
H A DindexSet.cpp127 char *mem = (char*)arena()->Amalloc_4(sizeof(BitBlock) * local
131 BitBlock *new_blocks = (BitBlock*)(((uintptr_t)mem + 32) & ~0x001F);
H A Dcompile.cpp2624 Node* mem = n->in(MemNode::Memory); local
2633 while (mem->Opcode() == Op_StoreCM && mem->outcnt() == 1 && !done) {
2634 if (adr == mem->in(MemNode::Address) &&
2635 val == mem->in(MemNode::ValueIn)) {
2637 if (mem->req() > MemNode::OopStore) {
2639 n->add_prec(mem->in(MemNode::OopStore));
2642 for (uint i = mem->req(); i < mem->len(); i++) {
2644 if (mem
2856 MemNode *mem = (MemNode*)n; local
[all...]
H A Darraycopynode.hpp110 Node* ctl, Node *mem);
H A Dcfgnode.cpp398 Node *mem = phi->in(i); local
399 if (mem && mem->is_MergeMem() && in(i)->outcnt() == 1) {
401 m = mem->as_MergeMem();
770 PhiNode* mem = (PhiNode*) clone(); local
771 *(const TypePtr**)&mem->_adr_type = adr_type;
774 if ((const Node*)in(i) == this) mem->set_req(i, mem);
776 mem->verify_adr_type();
777 return mem;
[all...]
H A Dgcm.cpp600 Node* mem = worklist_mem.pop(); local
610 mem = store; // It's not a possibly interfering store.
614 for (DUIterator_Fast imax, i = mem->fast_outs(imax); i < imax; i++) {
615 store = mem->fast_out(i);
626 worklist_mem.push(mem);
691 // Instead of finding the LCA of all inputs to a Phi that match 'mem',
699 if (store->in(j) == mem) { // Found matching input?
720 // have all input edges directly from 'mem'. See BugId 4621264
722 // Increment by exactly one even if there are multiple copies of 'mem'
724 // if there are several copies of 'mem'
[all...]
H A Dcallnode.hpp865 AllocateNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio,
943 AllocateArrayNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio, argument
947 : AllocateNode(C, atype, ctrl, mem, abio, size, klass_node,
H A Dloopopts.cpp687 Node* mem = n->in(MemNode::Memory); local
710 mem->is_Phi() && mem->in(0) == n_loop->_head &&
711 mem->outcnt() == 1 &&
712 mem->in(LoopNode::LoopBackControl) == n) {
746 _igvn.replace_input_of(mem, LoopNode::LoopBackControl, mem);
748 _igvn.replace_input_of(n, MemNode::Memory, mem->in(LoopNode::EntryControl));
751 _igvn.replace_node(mem, mem
[all...]
H A DcallGenerator.cpp382 Node* mem = MergeMemNode::make(map->in(TypeFunc::Memory)); local
383 C->initial_gvn()->set_type_bottom(mem);
384 map->set_req(TypeFunc::Memory, mem);
/openjdk10/hotspot/test/native/utilities/
H A Dtest_bitMap_setops.cpp328 static void check_tail_unmodified(BitMapMemory& mem, argument
334 bm_word_t last_word = mem.memory()[last_word_index];
/openjdk10/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djccolor.c98 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
360 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
H A Djdhuff.c179 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
650 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
H A Djdphuff.c657 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
669 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
H A Djdsample.c412 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
475 upsample->color_buf[ci] = (*cinfo->mem->alloc_sarray)
H A Djcapimin.c39 cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
H A Djdapimin.c39 cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
H A Djdmarker.c279 cinfo->comp_info = (jpeg_component_info *) (*cinfo->mem->alloc_small)
787 (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
1297 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
1340 maxlength = cinfo->mem->max_alloc_chunk - SIZEOF(struct jpeg_marker_struct);
H A Djcparam.c286 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
573 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
H A Djcmarker.c669 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
H A Djcsample.c476 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/soql/
H A Dsa.js298 writeln("Usage: mem [ length ]");
300 mem(addr, len);
303 registerCommand("mem", "mem address [ length ]", "printMem");
490 function mem(addr, num) { function
/openjdk10/hotspot/test/serviceability/jvmti/StartPhase/AllowedFunctions/
H A DlibAllowedFunctions.c75 static void deallocate(jvmtiEnv *jvmti, char* mem) { argument
76 jvmtiError err = (*jvmti)->Deallocate(jvmti, (unsigned char*)mem);
/openjdk10/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A Dgtk2_interface.h381 static void (*fp_g_free)(gpointer mem);
/openjdk10/hotspot/src/share/vm/runtime/
H A Dos.cpp942 size_t mem = physical_memory()/G; local
943 if (mem == 0) { // for low memory systems
944 mem = physical_memory()/M;
945 st->print("%d cores, " SIZE_FORMAT "M, ", processor_count(), mem);
947 st->print("%d cores, " SIZE_FORMAT "G, ", processor_count(), mem);
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp527 unsigned char* mem = NULL; local
528 jvmtiError result = allocate(size, &mem);
530 return mem;

Completed in 310 milliseconds

12345