Searched defs:num (Results 51 - 75 of 141) sorted by relevance

123456

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DCMBuilder.java286 private CMNode multiNodes(CMNode node, int num, boolean copyFirst) { argument
287 if (num == 0) {
290 if (num == 1) {
293 int num1 = num/2;
296 multiNodes(node, num-num1, true));
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathVisitor.java195 * @param num The number literal object.
198 public boolean visitNumberLiteral(ExpressionOwner owner, XNumber num) argument
H A DExpression.java170 public double num(XPathContext xctxt) method in class:Expression
173 return execute(xctxt).num();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXRTreeFrag.java153 public double num() method in class:XRTreeFrag
276 return num() == obj2.num();
H A DXNodeSet.java162 public double num() method in class:XNodeSet
554 double num2 = obj2.num();
569 double num2 = obj2.num();
631 result = comparator.compareNumbers(this.num(), obj2.num());
H A DXString.java104 public double num() method in class:XString
312 return obj2.num() == num();
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsurvRateGroup.cpp215 (double) _summary_surv_rates[index]->num());
221 int num = 0; local
225 ++num;
227 samples += _summary_surv_rates[index]->num();
230 if (index == length || num % 10 == 0) {
232 (index-1) / 10 * 10, index-1, sum / (double) num,
233 (double) samples / (double) num);
235 num = 0;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaLazyReadObject.java110 protected static long getIdValue(Number num) { argument
111 long id = num.longValue();
112 if (num instanceof Integer) {
/openjdk7/jdk/src/macosx/native/jobjc/src/runtime-additions/java/com/apple/jobjc/
H A DUtils.java81 private static native long getNativeNSNumberForJavaNumber(final Number num); argument
82 private static native Number getNativeJavaNumberForNSNumber(final long num); argument
87 public NSNumber nsNumber(final Number num) { argument
88 if (num == null) return null;
89 final long nsNumber = getNativeNSNumberForJavaNumber(num);
93 public Number javaNumber(final NSNumber num) { argument
94 if (num == null) return null;
95 return getNativeJavaNumberForNSNumber(((ID)num).ptr);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dimg_util_md.h47 int num; /* The last fully delivered scanline */ member in struct:__anon1009::__anon1010
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_new.cpp93 void *safe_Calloc(size_t num, size_t size) throw (std::bad_alloc) { argument
94 register void *ret_val = calloc(num, size);
225 void *safe_Calloc_outofmem(size_t num, size_t size, const char *file, int line) argument
229 return safe_Calloc(num, size);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DNetClient.java166 private static void intToNetworkByteOrder(int num, byte[] buf, argument
174 buf[start+i] = (byte)(num & 0xff);
175 num >>>= 8;
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DMain.java156 public static String getText(String key, int num) { argument
157 return getText(key, Integer.toString(num));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSNamedMapImpl.java85 * @param num the number of namespaces
87 public XSNamedMapImpl(String[] namespaces, SymbolHash[] maps, int num) { argument
90 fNSNum = num;
/openjdk7/hotspot/src/share/vm/classfile/
H A DloaderConstraints.cpp137 int num = probe->num_loaders() - 1; local
138 probe->set_num_loaders(num);
139 probe->set_loader(n, probe->loader(num));
140 probe->set_loader(num, NULL);
356 int num = p->num_loaders(); local
357 p->set_loader(num, loader());
358 p->set_num_loaders(num + 1);
363 num,
393 int num = p1->num_loaders(); local
394 p1->set_loader(num, p
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DAbstractSaslImpl.java319 protected static final void intToNetworkByteOrder(int num, byte[] buf, argument
326 buf[start+i] = (byte)(num & 0xff);
327 num >>>= 8;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FrameMap_x86.cpp60 int num = r_1->as_FloatRegister()->encoding(); local
62 opr = LIR_OprFact::single_fpu(num);
64 opr = LIR_OprFact::double_fpu(num);
68 int num = r_1->as_XMMRegister()->encoding(); local
70 opr = LIR_OprFact::single_xmm(num);
72 opr = LIR_OprFact::double_xmm(num);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPMetadata.java278 private String countBits(int num) { argument
280 while(num > 0) {
281 if ((num & 1) == 1)
283 num >>>= 1;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_version.cpp281 unsigned int num,
295 (switch_pt + ((ncpus - switch_pt) * num) / den);
280 nof_parallel_worker_threads( unsigned int num, unsigned int den, unsigned int switch_pt) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp112 if (parts[i] != NULL && total->num() != parts[i]->num())
205 double num = (double) _num; local
223 x_avg = x_sum / num;
224 y_avg = y_sum / num;
226 double Sxx = x_squared_sum - x_sum * x_sum / num;
227 double Sxy = xy_sum - x_sum * y_sum / num;
231 return b0 + b1 * num;
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageLookUpS16S16Func.c69 mlib_s32 i, num; /* loop variable */ local
118 num = (mlib_s16 *) dend - (mlib_s16 *) dp;
119 sp += num;
120 num++;
122 if (num == 1) {
129 else if (num == 2) {
142 else if (num == 3) {
352 mlib_s32 i, num; /* loop variable */ local
411 num = (mlib_s16 *) dend - (mlib_s16 *) dp;
412 sp += num;
[all...]
H A Dmlib_v_ImageLookUpS16U16Func.c69 mlib_s32 i, num; /* loop variable */ local
118 num = (mlib_u16 *) dend - (mlib_u16 *) dp;
119 sp += num;
120 num++;
122 if (num == 1) {
129 else if (num == 2) {
142 else if (num == 3) {
352 mlib_s32 i, num; /* loop variable */ local
411 num = (mlib_s16 *) dend - (mlib_s16 *) dp;
412 sp += num;
[all...]
H A Dmlib_v_ImageLookUpS16U8Func.c71 mlib_s32 i, num; /* loop variable */ local
142 num = (mlib_addr) dend - (mlib_addr) dp;
143 sp += num;
144 num++;
146 if ((num & 3) == 1) {
152 num--;
154 else if ((num & 3) == 2) {
166 num -= 2;
168 else if ((num & 3) == 3) {
186 num
417 mlib_s32 i, num; /* loop variable */ local
[all...]
H A Dmlib_v_ImageLookUpS32S16Func.c69 mlib_s32 i, num; /* loop variable */ local
116 num = (mlib_s32) ((mlib_s16 *) dend - (mlib_s16 *) dp);
117 sp += num;
118 num++;
120 if (num == 1) {
126 else if (num == 2) {
138 else if (num == 3) {
347 mlib_s32 i, num; /* loop variable */ local
403 num = (mlib_s32) ((mlib_s16 *) dend - (mlib_s16 *) dp);
404 sp += num;
[all...]
H A Dmlib_v_ImageLookUpS32U16Func.c69 mlib_s32 i, num; /* loop variable */ local
116 num = (mlib_s32) ((mlib_u16 *) dend - (mlib_u16 *) dp);
117 sp += num;
118 num++;
120 if (num == 1) {
126 else if (num == 2) {
138 else if (num == 3) {
350 mlib_s32 i, num; /* loop variable */ local
406 num = (mlib_s32) ((mlib_u16 *) dend - (mlib_u16 *) dp);
407 sp += num;
[all...]

Completed in 293 milliseconds

123456