HomeSort by relevance Sort by last modified time
    Searched refs:nb (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/kernel-headers/original/linux/
cpu.h 43 extern int register_cpu_notifier(struct notifier_block *nb);
45 extern void unregister_cpu_notifier(struct notifier_block *nb);
47 static inline void unregister_cpu_notifier(struct notifier_block *nb)
56 static inline int register_cpu_notifier(struct notifier_block *nb)
60 static inline void unregister_cpu_notifier(struct notifier_block *nb)
76 #define register_hotcpu_notifier(nb) register_cpu_notifier(nb)
77 #define unregister_hotcpu_notifier(nb) unregister_cpu_notifier(nb)
85 #define register_hotcpu_notifier(nb) do { } while (0
    [all...]
  /bionic/libc/kernel/common/linux/
cpu.h 33 #define register_hotcpu_notifier(nb) do { } while (0)
34 #define unregister_hotcpu_notifier(nb) do { } while (0)
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
cpu.h 33 #define register_hotcpu_notifier(nb) do { } while (0)
34 #define unregister_hotcpu_notifier(nb) do { } while (0)
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
cpu.h 33 #define register_hotcpu_notifier(nb) do { } while (0)
34 #define unregister_hotcpu_notifier(nb) do { } while (0)
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
cpu.h 33 #define register_hotcpu_notifier(nb) do { } while (0)
34 #define unregister_hotcpu_notifier(nb) do { } while (0)
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
cpu.h 33 #define register_hotcpu_notifier(nb) do { } while (0)
34 #define unregister_hotcpu_notifier(nb) do { } while (0)
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
cpu.h 33 #define register_hotcpu_notifier(nb) do { } while (0)
34 #define unregister_hotcpu_notifier(nb) do { } while (0)
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
cpu.h 33 #define register_hotcpu_notifier(nb) do { } while (0)
34 #define unregister_hotcpu_notifier(nb) do { } while (0)
  /external/iproute2/tc/
em_nbyte.c 47 struct tcf_em_nbyte nb; local
49 memset(&nb, 0, sizeof(nb));
95 nb.len = needle->len;
96 nb.layer = (__u8) layer;
97 nb.off = (__u16) offset;
100 addraw_l(n, MAX_MSG, &nb, sizeof(nb));
111 struct tcf_em_nbyte *nb = data; local
114 if (data_len < sizeof(*nb)) {
    [all...]
  /external/tcpdump/
print-netbios.c 49 netbios_print(struct p8022Hdr *nb, u_int length)
56 if (nb->flags == UI) {
62 if ((u_char *)(nb + 1) > snapend) {
68 netbios_decode(nb, (u_char *)nb + p8022Size, length - p8022Size);
  /external/openssl/crypto/bn/asm/
co-586.pl 17 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
34 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 0; # laod next b
35 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # laod next b
45 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
64 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
74 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
100 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos <= 1) && ($na != $nb);
158 $nb=($bi+1)
    [all...]
  /external/openssl/crypto/bn/asm/x86/
comba.pl 6 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
23 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 0; # laod next b
24 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # laod next b
34 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
53 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
63 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
89 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos <= 1) && ($na != $nb);
147 $nb=($bi+1)
    [all...]
  /external/jpeg/
jdhuff.h 177 { register int nb, look; \
182 nb = 1; goto slowlabel; \
186 if ((nb = htbl->look_nbits[look]) != 0) { \
187 DROP_BITS(nb); \
190 nb = HUFF_LOOKAHEAD+1; \
192 if ((result=jpeg_huff_decode(&state,get_buffer,bits_left,htbl,nb)) < 0) \
  /external/bluetooth/glib/tests/
gio-test.c 71 gsize nb; local
81 error = g_io_channel_read (channel, bufp, left, &nb);
93 if (nb == 0)
95 left -= nb;
96 bufp += nb;
97 *bytes_read += nb;
139 guint nb; local
143 error = read_all (fd, channel, (gchar *) &seq, sizeof (seq), &nb);
146 if (nb == 0)
155 g_assert (nb == sizeof (nbytes))
236 guint nb; local
    [all...]
  /external/speex/libspeex/
lsp.h 56 int lpc_to_lsp (spx_coef_t *a, int lpcrdr, spx_lsp_t *freq, int nb, spx_word16_t delta, char *stack);
  /external/webkit/WebCore/platform/
Arena.cpp 125 void* ArenaAllocate(ArenaPool *pool, unsigned int nb)
130 ASSERT((nb & pool->mask) == 0);
132 nb = (uword)ARENA_ALIGN(pool, nb); /* force alignment */
138 if ( a->avail +nb <= a->limit ) {
141 a->avail += nb;
152 if ( a->base +nb <= a->limit ) {
159 a->avail += nb;
175 unsigned int sz = max(pool->arenasize, nb);
186 a->avail += nb;
    [all...]
Arena.h 67 void* ArenaAllocate(ArenaPool *pool, unsigned int nb);
73 #define ARENA_ALLOCATE(p, pool, nb) \
75 unsigned int _nb = ARENA_ALIGN(pool, nb); \
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
mistream.cpp 175 size_t nb = grain - r; local
176 if (!r) nb = 0;
178 verify_remaining ("align", "padding", nb);
180 assert (remaining() >= nb && "Buffer overrun. Check your stream size calculations.");
182 fill_n (ipos(), nb, '\x0'); local
183 m_Pos += nb;
  /external/oprofile/libpopt/
poptparse.c 17 size_t nb = (argc + 1) * sizeof(*argv); local
27 nb += strlen(argv[i]) + 1;
30 dst = malloc(nb);
  /external/openssl/crypto/x509/
x509_cmp.c 146 * this to work. NB: Although "cmp" operations are generally
271 X509_NAME_ENTRY *na,*nb; local
282 nb=sk_X509_NAME_ENTRY_value(b->entries,i);
283 j=na->value->type-nb->value->type;
287 nbbit = ASN1_tag2bit(nb->value->type);
291 if (!asn1_string_memcmp(na->value, nb->value))
295 j=nocase_spacenorm_cmp(na->value, nb->value);
298 j=nocase_cmp(na->value, nb->value);
300 j = asn1_string_memcmp(na->value, nb->value);
302 j=na->set-nb->set
    [all...]
  /system/extras/tests/memtest/
memtest.cpp 218 int nb = 0; local
219 for (int size=0 ; size<4096 && !nb ; size++) {
220 nb += validate_memcpy(s, d, size);
221 for (int o=1 ; o<32 && !nb ; o++) {
222 nb += validate_memcpy(s+o, d, size);
223 nb += validate_memcpy(s, d+o, size);
224 nb += validate_memcpy(s+o, d+o, size);
227 if (nb) printf("%d error(s) found\n", nb);
328 int nb = 0 local
475 int nb = 0; local
    [all...]
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_conntrack.h 319 static inline int ip_conntrack_register_notifier(struct notifier_block *nb)
321 return atomic_notifier_chain_register(&ip_conntrack_chain, nb);
324 static inline int ip_conntrack_unregister_notifier(struct notifier_block *nb)
326 return atomic_notifier_chain_unregister(&ip_conntrack_chain, nb);
330 ip_conntrack_expect_register_notifier(struct notifier_block *nb)
332 return atomic_notifier_chain_register(&ip_conntrack_expect_chain, nb);
336 ip_conntrack_expect_unregister_notifier(struct notifier_block *nb)
339 nb);
  /bionic/libc/bionic/
dlmalloc.c 3924 size_t nb = request2size(bytes); local
3996 size_t nb = request2size(bytes); local
4223 size_t nb; local
4652 size_t nb; local
    [all...]
  /external/libffi/src/
dlmalloc.c 3788 size_t nb = request2size(bytes); local
3860 size_t nb = request2size(bytes); local
4087 size_t nb; local
4494 size_t nb; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 3798 size_t nb = request2size(bytes); local
3870 size_t nb = request2size(bytes); local
4097 size_t nb; local
4504 size_t nb; local
    [all...]

Completed in 955 milliseconds

1 2 3 4