HomeSort by relevance Sort by last modified time
    Searched defs:nn (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/qemu/android/
keycode-array.c 34 int nn; local
36 for (nn = 0; nn < keycodes->keycode_count; nn++) {
37 int code = keycodes->keycodes[nn];
audio-test.c 77 int nn; local
78 for (nn = 0; nn < SAMPLE_SIZE; nn++) {
79 ta->sample[nn] = (short)(((nn % (SAMPLE_SIZE/4))*65536/(SAMPLE_SIZE/4)) & 0xffff);
  /bionic/libc/bionic/
sched_cpucount.c 33 int nn = 0, nn_max = setsize / sizeof(__CPU_BITTYPE); local
36 for ( ; nn < nn_max; nn++ )
37 count += __builtin_popcount(set->__bits[nn]);
bindresvport.c 43 int nn, ret; local
58 for (nn = NUM_PORTS; nn > 0; nn--, port++)
pathconf.c 71 int nn = 0; local
73 for (; known64[nn] != EOL_MAGIC; ++nn) {
74 if (known64[nn] == s->f_type) {
99 int nn = 0; local
101 for (; knownMax[nn].type != EOL_MAGIC; ++nn) {
102 if (knownMax[nn].type == s->f_type) {
103 return knownMax[nn].max;
119 int nn = 0 local
    [all...]
  /system/core/adb/
console.c 29 int fd, nn; local
37 for (nn = 1; nn < argc; nn++) {
38 adb_write( fd, argv[nn], strlen(argv[nn]) );
39 adb_write( fd, (nn == argc-1) ? "\n" : " ", 1 );
utils.c 80 int nn; local
83 nn = vsnprintf( buff, avail, format, args);
86 if (nn < 0) {
91 nn = avail;
93 else if (nn > avail) {
94 nn = avail;
97 buff += nn;
  /bootable/recovery/minadbd/
utils.c 80 int nn; local
83 nn = vsnprintf( buff, avail, format, args);
86 if (nn < 0) {
91 nn = avail;
93 else if (nn > avail) {
94 nn = avail;
97 buff += nn;
  /development/ndk/samples/hello-neon/jni/
helloneon-intrinsics.c 27 int nn, offset = -kernelSize/2; local
29 for (nn = 0; nn < width; nn++)
36 int16x4_t input_vec = vld1_s16(input + (nn+offset+mm*4));
48 sum += kernel[mm] * input[nn+offset+mm];
51 output[nn] = (short)((sum + 0x8000) >> 16);
54 int nn, offset = -kernelSize/2;
55 for (nn = 0; nn < width; nn++)
    [all...]
  /external/freetype/src/base/
ftadvanc.c 31 FT_UInt nn; local
48 for ( nn = 0; nn < count; nn++ )
49 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
112 FT_UInt num, end, nn; local
144 for ( nn = 0; nn < count; nn++
    [all...]
  /external/qemu/
user-events-qemu.c 20 int nn; local
21 for (nn = 0; nn < count; nn++)
22 user_event_keycode(kcodes[nn]);
  /external/webrtc/src/common_audio/signal_processing/
complex_bit_reverse.c 22 int mr, nn, n, l, m; local
28 nn = n - 1;
31 for (m = 1; m <= nn; ++m)
37 } while (mr + l > nn);
  /ndk/sources/host-tools/toolbox/
echo_win.c 47 int nn; local
  /system/extras/tests/bionic/libc/common/
test_pthread_once.c 66 int nn; local
68 for (nn = 0; nn < N_THREADS; nn++) {
69 if (pthread_create( &threads[nn], NULL, thread_function, (void*)(long int)nn) < 0) {
70 printf("creation of thread %d failed\n", nn);
75 for (nn = 0; nn < N_THREADS; nn++)
    [all...]
test_sem_post.c 60 int nn, value; local
69 for ( nn = 0; nn < MAX_THREADS; nn++ ) {
70 if ( pthread_create( &t[nn], NULL, thread_func, &semaphore ) < 0 ) {
71 printf("Could not create thread %d: %s\n", nn+1, strerror(errno) );
77 for (nn = 0; nn < MAX_THREADS; nn++) {
81 for ( nn = 0; nn < MAX_THREADS; nn++)
    [all...]
test_semaphore.c 114 int nn; local
121 for ( nn = 0; nn < 3; nn++ ) {
122 if ( pthread_create( &t[nn], NULL, thread_routines[nn], NULL ) < 0 ) {
123 printf("could not create thread %d: %s\n", nn+1, strerror(errno) );
test_pthread_getcpuclockid.c 71 int nn; local
78 for (nn = 0; nn < MAX_THREADS; nn++) {
79 pthread_create( &threads[nn], &attr, thread_func, (void*)nn );
81 for (nn = 0; nn < MAX_THREADS; nn++) {
83 pthread_join( threads[nn], &dummy )
    [all...]
  /bionic/libc/netbsd/net/
getservent.c 56 int nn,count; local
75 for (nn = 0; nn < count; nn++) {
106 for (nn = 0; nn < count; nn++) {
108 rs->servent.s_aliases[nn] = p2;
114 rs->servent.s_aliases[nn] = NULL;
  /external/qemu/android/utils/
dll.c 49 int nn; local
51 for (nn = 0; nn < len; nn++) {
52 int ch = path[nn];
56 result[nn] = (char)ch;
58 result[nn] = '\0';
refset.c 88 unsigned nn, count = s->num_buckets; local
92 for (nn = 0; nn < s->max_buckets; nn++) {
93 void* item = s->buckets[nn];
162 unsigned nn, newSize; local
164 for (nn = 0; nn < s->max_buckets; nn++) {
165 if (s->buckets[nn] == AREFSET_DELETED)
    [all...]
  /external/qemu/slirp/
sbuf.c 134 int len, n, nn; local
150 nn = sb->sb_rptr - sb->sb_data;
151 if (nn > len) nn = len;
152 memcpy(sb->sb_data,m->m_data+n,nn);
153 n += nn;
  /external/qemu/slirp-android/
sbuf.c 134 int len, n, nn; local
150 nn = sb->sb_rptr - sb->sb_data;
151 if (nn > len) nn = len;
152 memcpy(sb->sb_data,m->m_data+n,nn);
153 n += nn;
  /external/regex-re2/util/
sparse_array_test.cc 43 int nn = 0; local
45 ASSERT_EQ(order[nn++], i->index());
48 ASSERT_EQ(nn, n);
  /system/extras/tests/bionic/libc/bionic/
test_cond.c 77 int nn; local
80 for (nn = 0; nn < count; nn++) {
81 printf("main: creating thread %d\n", nn+1);
82 if (pthread_create( &t[nn], NULL, thread_routines[nn], NULL) < 0) {
83 printf("main: could not create thread %d: %s\n", nn+1, strerror(errno));
88 for (nn = 0; nn < count; nn++)
    [all...]
  /external/qemu/android/protocol/
user-events-proxy.c 128 int nn; local
129 for (nn = 0; nn < count; nn++)
130 user_event_keycode(kcodes[nn]);

Completed in 282 milliseconds

1 2 3 4 5 6