Home
last modified time | relevance | path

Searched refs:nn (Results 1 – 25 of 443) sorted by relevance

12345678910>>...18

/external/fec/
Drstest.c54 int nn,kk; in main() local
56 nn = (1<<Tab[i].symsize) - 1; in main()
57 kk = nn - Tab[i].nroots; in main()
58 printf("Testing (%d,%d) code...\n",nn,kk); in main()
68 int nn = 255; in exercise_8() local
69 unsigned char block[nn],tblock[nn]; in exercise_8()
70 int errlocs[nn],derrlocs[nn]; in exercise_8()
83 for(errors=0;errors<=(nn-kk)/2;errors++){ in exercise_8()
87 block[i] = random() & nn; in exercise_8()
98 errval = random() & nn; in exercise_8()
[all …]
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
Dapinames.c64 int nn, len; in names_add() local
73 for ( nn = 0; nn < len; nn++ ) in names_add()
74 h = h*33 + name[nn]; in names_add()
77 for ( nn = 0; nn < num_names; nn++ ) in names_add()
79 nm = the_names + nn; in names_add()
131 int nn; in names_dump() local
142 for ( nn = 0; nn < num_names; nn++ ) in names_dump()
143 fprintf( out, " %s\n", the_names[nn].name ); in names_dump()
152 for ( nn = 0; nn < num_names; nn++ ) in names_dump()
153 fprintf( out, " _%s\n", the_names[nn].name ); in names_dump()
[all …]
/external/llvm/test/Transforms/InstCombine/
Drange-check.ll7 ; CHECK: [[R:%[0-9]+]] = icmp ugt i32 %nn, %x
10 %nn = and i32 %n, 2147483647
12 %b = icmp slt i32 %x, %nn
18 ; CHECK: [[R:%[0-9]+]] = icmp uge i32 %nn, %x
21 %nn = and i32 %n, 2147483647
23 %b = icmp sle i32 %x, %nn
29 ; CHECK: [[R:%[0-9]+]] = icmp ugt i32 %nn, %x
32 %nn = and i32 %n, 2147483647
33 %a = icmp sgt i32 %nn, %x
40 ; CHECK: [[R:%[0-9]+]] = icmp uge i32 %nn, %x
[all …]
/external/ImageMagick/PerlMagick/t/reference/composite/
DCopyRed.miff15nn+nn0nn:nnLnnXnnnnn�nnnnnnnnnnnn�nnlnn^nnfnnjnn�nnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
DCopyBlue.miff15nn(nn+nn0nnNnnmnn�nnnnnnnnnnnnnnnn]nnGnnInnEnnCnnQnn=nn+nn&nn&nn+nn)nn+nn+nn9nn)nn(nn(nn(nn
/external/google-breakpad/src/client/linux/minidump_writer/
Dcpu_set.h114 for (size_t nn = 0; nn < kMaskWordCount; ++nn) in IntersectWith() local
115 mask_[nn] &= other.mask_[nn]; in IntersectWith()
121 for (size_t nn = 0; nn < kMaskWordCount; ++nn) { in GetCount() local
122 result += __builtin_popcount(mask_[nn]); in GetCount()
129 size_t nn = static_cast<size_t>(index); in SetBit() local
130 if (nn < kMaxCpus) in SetBit()
131 mask_[nn / kMaskWordBits] |= (1U << (nn % kMaskWordBits)); in SetBit()
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/src/com/badlogic/gdx/controllers/desktop/
DOisControllers.java102 for (int ii = 0, nn = allListeners.size; ii < nn; ii++) in OisController()
104 for (int ii = 0, nn = listeners.size; ii < nn; ii++) in OisController()
110 for (int ii = 0, nn = allListeners.size; ii < nn; ii++) in OisController()
112 for (int ii = 0, nn = listeners.size; ii < nn; ii++) in OisController()
118 for (int ii = 0, nn = allListeners.size; ii < nn; ii++) in OisController()
120 for (int ii = 0, nn = listeners.size; ii < nn; ii++) in OisController()
127 for (int ii = 0, nn = allListeners.size; ii < nn; ii++) in OisController()
129 for (int ii = 0, nn = listeners.size; ii < nn; ii++) in OisController()
135 for (int ii = 0, nn = allListeners.size; ii < nn; ii++) in OisController()
137 for (int ii = 0, nn = listeners.size; ii < nn; ii++) in OisController()
[all …]
/external/opencv3/modules/flann/include/opencv2/flann/
Dindex_testing.h87 …t Matrix<typename Distance::ElementType>& testData, const Matrix<int>& matches, int nn, int checks, in search_with_ground_truth() argument
92 if (matches.cols<size_t(nn)) { in search_with_ground_truth()
93 Logger::info("matches.cols=%d, nn=%d\n",matches.cols,nn); in search_with_ground_truth()
98 KNNResultSet<DistanceType> resultSet(nn+skipMatches); in search_with_ground_truth()
101 std::vector<int> indices(nn+skipMatches); in search_with_ground_truth()
102 std::vector<DistanceType> dists(nn+skipMatches); in search_with_ground_truth()
118 correct += countCorrectMatches(neighbors,matches[i], nn); in search_with_ground_truth()
119 …eRaport<Distance>(inputData, testData[i], neighbors, matches[i], (int)testData.cols, nn, distance); in search_with_ground_truth()
125 float precicion = (float)correct/(nn*testData.rows); in search_with_ground_truth()
127 dist = distR/(testData.rows*nn); in search_with_ground_truth()
[all …]
/external/pdfium/third_party/freetype/src/base/
Dftadvanc.c33 FT_UInt nn; in _ft_face_scale_advances() local
50 for ( nn = 0; nn < count; nn++ ) in _ft_face_scale_advances()
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 ); in _ft_face_scale_advances()
117 FT_UInt num, end, nn; in FT_Get_Advances() local
152 for ( nn = 0; nn < count; nn++ ) in FT_Get_Advances()
154 error = FT_Load_Glyph( face, start + nn, flags ); in FT_Get_Advances()
159 padvances[nn] = ( flags & FT_LOAD_VERTICAL_LAYOUT ) in FT_Get_Advances()
/external/freetype/src/base/
Dftadvanc.c33 FT_UInt nn; in _ft_face_scale_advances() local
50 for ( nn = 0; nn < count; nn++ ) in _ft_face_scale_advances()
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 ); in _ft_face_scale_advances()
117 FT_UInt num, end, nn; in FT_Get_Advances() local
152 for ( nn = 0; nn < count; nn++ ) in FT_Get_Advances()
154 error = FT_Load_Glyph( face, start + nn, flags ); in FT_Get_Advances()
159 padvances[nn] = ( flags & FT_LOAD_VERTICAL_LAYOUT ) in FT_Get_Advances()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
Dftadvanc.c33 FT_UInt nn; in _ft_face_scale_advances() local
50 for ( nn = 0; nn < count; nn++ ) in _ft_face_scale_advances()
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 ); in _ft_face_scale_advances()
117 FT_UInt num, end, nn; in FT_Get_Advances() local
152 for ( nn = 0; nn < count; nn++ ) in FT_Get_Advances()
154 error = FT_Load_Glyph( face, start + nn, flags ); in FT_Get_Advances()
159 padvances[nn] = ( flags & FT_LOAD_VERTICAL_LAYOUT ) in FT_Get_Advances()
/external/curl/tests/certs/
DMakefile.am30 Server-localhost.nn-sv.prm \
48 Server-localhost.nn-sv.crl \
49 Server-localhost.nn-sv.crt \
50 Server-localhost.nn-sv.csr \
51 Server-localhost.nn-sv.der \
52 Server-localhost.nn-sv.dhp \
53 Server-localhost.nn-sv.key \
54 Server-localhost.nn-sv.pem \
55 Server-localhost.nn-sv.pub.der \
56 Server-localhost.nn-sv.pub.pem \
[all …]
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/
Dafwarp.c82 FT_Int nn; in af_warper_compute_line_best() local
86 for ( nn = 0; nn < 65; nn++ ) in af_warper_compute_line_best()
87 scores[nn] = 0; in af_warper_compute_line_best()
120 for ( nn = 0; nn < num_segments; nn++ ) in af_warper_compute_line_best()
122 FT_Pos len = segments[nn].max_coord - segments[nn].min_coord; in af_warper_compute_line_best()
123 FT_Pos y0 = FT_MulFix( segments[nn].pos, scale ) + delta; in af_warper_compute_line_best()
174 FT_Int nn, num_points, num_segments; in af_warper_compute() local
214 for ( nn = 1; nn < num_points; nn++ ) in af_warper_compute()
216 FT_Int X = points[nn].fx; in af_warper_compute()
226 for ( nn = 1; nn < num_segments; nn++ ) in af_warper_compute()
[all …]
Dafglobal.c277 FT_Long nn; in af_face_globals_compute_style_coverage() local
280 for ( nn = 0; nn < globals->glyph_count; nn++ ) in af_face_globals_compute_style_coverage()
282 if ( ( gstyles[nn] & AF_STYLE_MASK ) == AF_STYLE_UNASSIGNED ) in af_face_globals_compute_style_coverage()
284 gstyles[nn] &= ~AF_STYLE_MASK; in af_face_globals_compute_style_coverage()
285 gstyles[nn] |= globals->module->fallback_style; in af_face_globals_compute_style_coverage()
390 FT_UInt nn; in af_face_globals_free() local
393 for ( nn = 0; nn < AF_STYLE_MAX; nn++ ) in af_face_globals_free()
395 if ( globals->metrics[nn] ) in af_face_globals_free()
398 AF_STYLE_CLASSES_GET[nn]; in af_face_globals_free()
404 writing_system_class->style_metrics_done( globals->metrics[nn] ); in af_face_globals_free()
[all …]
/external/freetype/src/autofit/
Dafwarp.c82 FT_Int nn; in af_warper_compute_line_best() local
86 for ( nn = 0; nn < 65; nn++ ) in af_warper_compute_line_best()
87 scores[nn] = 0; in af_warper_compute_line_best()
120 for ( nn = 0; nn < num_segments; nn++ ) in af_warper_compute_line_best()
122 FT_Pos len = segments[nn].max_coord - segments[nn].min_coord; in af_warper_compute_line_best()
123 FT_Pos y0 = FT_MulFix( segments[nn].pos, scale ) + delta; in af_warper_compute_line_best()
174 FT_Int nn, num_points, num_segments; in af_warper_compute() local
214 for ( nn = 1; nn < num_points; nn++ ) in af_warper_compute()
216 FT_Int X = points[nn].fx; in af_warper_compute()
226 for ( nn = 1; nn < num_segments; nn++ ) in af_warper_compute()
[all …]
Dafglobal.c248 FT_Long nn; in af_face_globals_compute_style_coverage() local
251 for ( nn = 0; nn < globals->glyph_count; nn++ ) in af_face_globals_compute_style_coverage()
253 if ( ( gstyles[nn] & ~AF_DIGIT ) == AF_STYLE_UNASSIGNED ) in af_face_globals_compute_style_coverage()
255 gstyles[nn] &= ~AF_STYLE_UNASSIGNED; in af_face_globals_compute_style_coverage()
256 gstyles[nn] |= globals->module->fallback_style; in af_face_globals_compute_style_coverage()
352 FT_UInt nn; in af_face_globals_free() local
355 for ( nn = 0; nn < AF_STYLE_MAX; nn++ ) in af_face_globals_free()
357 if ( globals->metrics[nn] ) in af_face_globals_free()
360 AF_STYLE_CLASSES_GET[nn]; in af_face_globals_free()
366 writing_system_class->style_metrics_done( globals->metrics[nn] ); in af_face_globals_free()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBNFChinesePostProcessor.java100 int nn = buf.lastIndexOf(ling, x); in process() local
102 if (nn > m) { in process()
103 ns = (nn > 0 && buf.charAt(nn-1) != '*') ? 2 : 1; in process()
115 n = nn; // remember optional ling to right in process()
126 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process()
140 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBNFChinesePostProcessor.java99 int nn = buf.lastIndexOf(ling, x); in process() local
101 if (nn > m) { in process()
102 ns = (nn > 0 && buf.charAt(nn-1) != '*') ? 2 : 1; in process()
114 n = nn; // remember optional ling to right in process()
125 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process()
139 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process()
/external/valgrind/VEX/priv/
Dguest_arm64_toIR.c2410 UInt nn = INSN(9,5); in dis_ARM64_data_processing_immediate() local
2422 assign(argL, getIReg64orSP(nn)); in dis_ARM64_data_processing_immediate()
2430 nm, nameIReg64orZR(dd), nameIReg64orSP(nn), uimm12); in dis_ARM64_data_processing_immediate()
2434 nm, nameIReg64orSP(dd), nameIReg64orSP(nn), uimm12); in dis_ARM64_data_processing_immediate()
2440 assign(argL, getIReg32orSP(nn)); in dis_ARM64_data_processing_immediate()
2448 nm, nameIReg32orZR(dd), nameIReg32orSP(nn), uimm12); in dis_ARM64_data_processing_immediate()
2452 nm, nameIReg32orSP(dd), nameIReg32orSP(nn), uimm12); in dis_ARM64_data_processing_immediate()
2492 UInt nn = INSN(9,5); in dis_ARM64_data_processing_immediate() local
2509 IRExpr* argL = getIReg64orZR(nn); in dis_ARM64_data_processing_immediate()
2516 nameIReg64orSP(dd), nameIReg64orZR(nn), imm); in dis_ARM64_data_processing_immediate()
[all …]
Dhost_generic_simd128.c279 V128* argL, UInt nn) in h_generic_calc_SarN64x2() argument
282 nn &= 63; in h_generic_calc_SarN64x2()
283 res->w64[0] = sar64(argL->w64[0], nn); in h_generic_calc_SarN64x2()
284 res->w64[1] = sar64(argL->w64[1], nn); in h_generic_calc_SarN64x2()
289 V128* argL, UInt nn) in h_generic_calc_SarN8x16() argument
292 nn &= 7; in h_generic_calc_SarN8x16()
293 res->w8[ 0] = sar8(argL->w8[ 0], nn); in h_generic_calc_SarN8x16()
294 res->w8[ 1] = sar8(argL->w8[ 1], nn); in h_generic_calc_SarN8x16()
295 res->w8[ 2] = sar8(argL->w8[ 2], nn); in h_generic_calc_SarN8x16()
296 res->w8[ 3] = sar8(argL->w8[ 3], nn); in h_generic_calc_SarN8x16()
[all …]
/external/pdfium/third_party/freetype/src/cff/
Dcffdrivr.c193 FT_UInt nn; in cff_get_advances() local
217 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
224 start + nn, in cff_get_advances()
229 start + nn, ah )); in cff_get_advances()
230 advances[nn] = ah; in cff_get_advances()
239 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
246 start + nn, in cff_get_advances()
251 start + nn, aw )); in cff_get_advances()
252 advances[nn] = aw; in cff_get_advances()
262 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
[all …]
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
Dcffdrivr.c193 FT_UInt nn; in cff_get_advances() local
217 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
224 start + nn, in cff_get_advances()
229 start + nn, ah )); in cff_get_advances()
230 advances[nn] = ah; in cff_get_advances()
239 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
246 start + nn, in cff_get_advances()
251 start + nn, aw )); in cff_get_advances()
252 advances[nn] = aw; in cff_get_advances()
262 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
[all …]
/external/freetype/src/cff/
Dcffdrivr.c193 FT_UInt nn; in cff_get_advances() local
217 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
224 start + nn, in cff_get_advances()
229 start + nn, ah )); in cff_get_advances()
230 advances[nn] = ah; in cff_get_advances()
239 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
246 start + nn, in cff_get_advances()
251 start + nn, aw )); in cff_get_advances()
252 advances[nn] = aw; in cff_get_advances()
262 for ( nn = 0; nn < count; nn++ ) in cff_get_advances()
[all …]
/external/freetype/src/truetype/
Dttpload.c489 FT_UInt version, nn, num_records; in tt_face_load_hdmx() local
537 for ( nn = 0; nn < num_records; nn++ ) in tt_face_load_hdmx()
542 face->hdmx_record_sizes[nn] = p[0]; in tt_face_load_hdmx()
546 face->hdmx_record_count = nn; in tt_face_load_hdmx()
582 FT_UInt nn; in tt_face_get_device_metrics() local
588 for ( nn = 0; nn < face->hdmx_record_count; nn++ ) in tt_face_get_device_metrics()
589 if ( face->hdmx_record_sizes[nn] == ppem ) in tt_face_get_device_metrics()
593 result = record + nn * record_size + gindex; in tt_face_get_device_metrics()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/truetype/
Dttdriver.c196 FT_UInt nn; in tt_get_advances() local
204 for ( nn = 0; nn < count; nn++ ) in tt_get_advances()
211 TT_Get_VMetrics( face, start + nn, 0, &tsb, &ah ); in tt_get_advances()
212 advances[nn] = ah; in tt_get_advances()
217 for ( nn = 0; nn < count; nn++ ) in tt_get_advances()
223 TT_Get_HMetrics( face, start + nn, &lsb, &aw ); in tt_get_advances()
224 advances[nn] = aw; in tt_get_advances()

12345678910>>...18