Searched refs:res (Results 101 - 125 of 785) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decp_mont.c56 mp_err res = MP_OKAY; local
72 res = MP_MEM;
92 if (res != MP_OKAY) {
106 mp_err res = MP_OKAY; local
130 return res;
145 mp_err res = MP_OKAY; local
157 return res;
166 mp_err res = MP_OKAY; local
172 return res;
179 mp_err res local
[all...]
H A Decl.c53 mp_err res = MP_OKAY; local
83 if (res != MP_OKAY) {
96 mp_err res = MP_OKAY; local
105 res = MP_MEM;
123 if (res != MP_OKAY) {
137 mp_err res = MP_OKAY; local
146 res = MP_MEM;
166 if (res != MP_OKAY) {
182 mp_err res = MP_OKAY; local
191 res
226 mp_err res = MP_OKAY; local
388 mp_err res = MP_OKAY; local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageAffine.c155 mlib_status res; local
193 res = mlib_AffineEdges(param, dst, src, buff_lcl, BUFF_SIZE,
196 if (res != MLIB_SUCCESS)
197 return res;
251 res = mlib_AffineFunArr_nn[4 * t_ind + (nchan - 1)] (param);
257 res = mlib_AffineFunArr_bl_i[t_ind] (param, colormap);
260 res = mlib_AffineFunArr_bl[4 * t_ind + (nchan - 1)] (param);
269 res = mlib_AffineFunArr_bc_i[t_ind] (param, colormap);
272 res = mlib_AffineFunArr_bc[4 * t_ind + (nchan - 1)] (param);
278 if (res !
[all...]
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DChannelImpl.java147 byte[] res = new byte[n1 + n2];
148 System.arraycopy(b1, 0, res, 0, n1);
149 System.arraycopy(b2, 0, res, n1, n2);
150 return res;
223 private static int getSW(byte[] res) throws CardException { argument
224 if (res.length < 2) {
225 throw new CardException("Invalid response length: " + res.length);
227 int sw1 = res[res.length - 2] & 0xff;
228 int sw2 = res[re
232 isOK(byte[] res) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderer.cpp145 HRESULT res; local
166 res = d3dc->BeginScene(STATE_RENDEROP);
167 RETURN_STATUS_IF_FAILED(res);
200 res = d3dc->pVCacher->FillParallelogram(fx11, fy11,
208 res = d3dc->pVCacher->FillParallelogram(fx11, fy11,
216 res = d3dc->pVCacher->FillParallelogram(fx11, fy11,
224 res = d3dc->pVCacher->FillParallelogram(fx11, fy11,
237 res = d3dc->pVCacher->FillParallelogram(ox11, oy11,
242 return res;
252 HRESULT res; local
291 HRESULT res; local
380 HRESULT res = d3dc->EndScene(); local
[all...]
H A DD3DPaints.cpp41 HRESULT res; local
50 res = d3dc->UpdateState(STATE_OTHEROP);
64 res = pd3dDevice->SetTextureStageState(sampler,
72 res = pd3dDevice->SetPixelShader(NULL);
84 return res;
90 HRESULT res = S_OK; local
99 res = D3DPaints_ResetPaint(d3dc);
105 return res;
117 HRESULT res; local
149 res
263 HRESULT res; local
346 HRESULT res; local
435 HRESULT res; local
482 HRESULT res; local
[all...]
H A DD3DBufImgOps.cpp47 HRESULT res; local
84 res = d3dc->EnableConvolveProgram(flags);
85 RETURN_STATUS_IF_FAILED(res);
139 HRESULT res; local
155 res = d3dc->EnableRescaleProgram(flags);
156 RETURN_STATUS_IF_FAILED(res);
194 HRESULT res; local
222 res = d3dc->EnableLookupProgram(flags);
223 RETURN_STATUS_IF_FAILED(res);
232 res
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/res/
H A DCharArrayWrapper.java23 package com.sun.org.apache.xml.internal.utils.res;
H A DIntArrayWrapper.java23 package com.sun.org.apache.xml.internal.utils.res;
H A DLongArrayWrapper.java23 package com.sun.org.apache.xml.internal.utils.res;
H A DStringArrayWrapper.java23 package com.sun.org.apache.xml.internal.utils.res;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaArray.java63 Object[] res = new Object[superFields.length + len];
65 res[i] = new Integer(i);
67 System.arraycopy(superFields, 0, res, len, superFields.length);
68 return res;
H A DJSJavaInstance.java56 Object[] res = new Object[fieldNames.length + superFields.length];
57 System.arraycopy(fieldNames, 0, res, 0, fieldNames.length);
58 System.arraycopy(superFields, 0, res, fieldNames.length, superFields.length);
59 return res;
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DgcCause.hpp112 int res = jio_snprintf(_buffer + _position, _length - _position, "%s", str); local
113 _position += res;
114 assert(res >= 0 && _position <= _length,
115 err_msg("Need to increase the buffer size in GCCauseString? %d", res));
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/
H A Dhat.js94 var res = next; variable
96 return res;
149 var res = new Array();
152 res[res.length] = tmp;
155 return res;
167 var res = new Array();
170 res[res.length] = subclass;
172 res
[all...]
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DParameterDecl.java74 final Collection<String> res = new ArrayList<String>();
78 res.add("field");
81 res.add("param");
84 return res;
H A DFieldDecl.java63 final Collection<String> res = new ArrayList<String>();
67 res.add("type");
70 res.add("field");
74 res.add("enum const");
77 return res;
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/chaining/
H A DProviders.java63 String res = InetAddress.getByName(host).getHostAddress();
64 if (!res.equals(addr)) {
75 String res = InetAddress.getByAddress(addrs).getHostName();
76 if (!res.equals(host)) {
/openjdk7/jdk/test/java/awt/image/
H A DGetSamplesTest.java106 SampleModel res = null;
109 res = new ComponentSampleModel(dataType, width, height, 4, width * 4, new int[] { 0, 1, 2, 3 } );
111 res = new MultiPixelPackedSampleModel(dataType, width, height, 4);
113 res = new SinglePixelPackedSampleModel(dataType, width, height,
116 res = new BandedSampleModel(dataType, width, height, numBands);
118 res = new PixelInterleavedSampleModel(dataType, width, height, 4, width * 4, new int[] { 0, 1, 2, 3 });
122 return res;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DScopeDesc.java175 List res = new ArrayList(length);
177 res.add(ScopeValue.readFrom(stream));
179 return res;
189 List res = new ArrayList(length);
191 res.add(new MonitorValue(stream));
193 return res;
201 List res = new ArrayList();
202 DebugInfoReadStream stream = new DebugInfoReadStream(code, decodeOffset, res);
205 // Objects values are pushed to 'res' array during read so that
208 // res
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBitMap.java169 int res = data[index] >> pos;
171 if (res != 0) {
173 for (; (res & 1) == 0; res_offset++) {
174 res = res >> 1;
180 res = data[index];
181 if (res != 0) {
183 for (res_offset = index * bitsPerWord; (res & 1) == 0; res_offset++) {
184 res = res >>
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DLdapSasl.java121 LdapResult res;
126 res = clnt.ldapBind(null, response, bindCtls, mechName, true);
129 (res.status == LDAP_SASL_BIND_IN_PROGRESS ||
130 res.status == LDAP_SUCCESS)) {
133 res.serverCreds != null? res.serverCreds : NO_BYTES);
134 if (res.status == LDAP_SUCCESS) {
141 res = clnt.ldapBind(null, response, bindCtls, mechName, true);
144 if (res.status == LDAP_SUCCESS) {
166 return res;
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DInvokeGenericTest.java272 Integer[] res = new Integer[vx.length];
273 for (int i = 0; i < res.length; i++) {
274 res[i] = vx[i];
276 return res;
340 Object res; List<?> resl;
341 res = resl = (List<?>) mh.invoke((String)args[0], (Object)args[1]);
342 //System.out.println(res);
343 assertEquals(Arrays.asList(args), res);
352 Object res; List<?> resl;
353 res
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.cpp142 uint res = 0;
149 res += 1;
151 return res;
161 uint res = find_contiguous_from(start, num); local
162 if (res == G1_NULL_HRS_INDEX && start > 0) {
165 res = find_contiguous_from(0, num);
167 if (res != G1_NULL_HRS_INDEX) {
168 assert(res < length(), err_msg("res: %u should be valid", res));
196 bool res = blk->doHeapRegion(at(i)); local
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DAlphaMacros.h120 DeclareCompVarsFor ## STRATEGY(res) \
157 Postload ## STRATEGY ## From ## SRC(pSrc, SrcPix, res); \
159 MultiplyAndStore ## STRATEGY ## Comps(res, \
160 srcF, res); \
169 Set ## STRATEGY ## CompsToZero(res); \
179 Set ## STRATEGY ## CompsToZero(res); \
195 Store ## STRATEGY ## CompsUsingOp(res, +=, tmp); \
201 DivideAndStore ## STRATEGY ## Comps(res, res, resA); \
204 0, res); \
[all...]

Completed in 76 milliseconds

1234567891011>>