Searched defs:std (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dalloc.h31 // By defining std::bad_alloc in a local header file instead of including
34 namespace std { namespace
88 // These three functions throw std::bad_alloc in an out of memory condition
91 void *safe_Malloc(size_t size) throw (std::bad_alloc);
92 void *safe_Calloc(size_t num, size_t size) throw (std::bad_alloc);
93 void *safe_Realloc(void *memblock, size_t size) throw (std::bad_alloc);
96 // std::bad_alloc if a java.lang.OutOfMemoryError is currently pending
98 jthrowable safe_ExceptionOccurred(JNIEnv *env) throw (std::bad_alloc);
116 // This function is called when a std::bad_alloc exception is caught
124 throw (std
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.inline.hpp285 inline void Assembler::std( Register d, Register s1, Register s2) { v9_dep(); assert(d->is_even(), "not even"); emit_long( op(ldst_op) | rd(d) | op3(std_op3) | rs1(s1) | rs2(s2) ); } function in class:Assembler
286 inline void Assembler::std( Register d, Register s1, int simm13a) { v9_dep(); assert(d->is_even(), "not even"); emit_data( op(ldst_op) | rd(d) | op3(std_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); } function in class:Assembler
312 inline void Assembler::std(Register d, const Address& a, int offset) { function in class:Assembler
313 if (a.has_index()) { assert(offset == 0, ""); std(d, a.base(), a.index() ); }
314 else { std(d, a.base(), a.disp() + offset); }
325 inline void Assembler::std(Register d, Register s1, RegisterOrConstant s2) { std(d, Address(s1, s2)); } function in class:Assembler
473 Assembler::std(d, s1, s2);
481 Assembler::std(d, s1, simm13a);
489 Assembler::std(
[all...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DOldMBeanServerTest.java1021 private final Object std; field in class:OldMBeanServerTest.OldMBeanServer.StandardWrapper
1023 StandardWrapper(Object std) throws NotCompliantMBeanException { argument
1024 this.std = std;
1025 Class<?> intf = mbeanInterface(std.getClass());
1222 for (Constructor constr : std.getClass().getConstructors())
1227 if (std instanceof NotificationBroadcaster)
1228 notifs = ((NotificationBroadcaster) std).getNotificationInfo();
1232 String className = std.getClass().getName();
1243 return invokeSomething(m, std,arg
1268 standardToDynamic(Object std) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp1540 void std() { emit_byte(0xfd); } function in class:Assembler

Completed in 81 milliseconds