HomeSort by relevance Sort by last modified time
    Searched refs:num (Results 176 - 200 of 1767) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/openssl/crypto/bio/
bss_file.c 98 static int MS_CALLBACK file_write(BIO *h, const char *buf, int num);
208 bi->num=0;
273 static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr)
285 ret=(long)UP_fseek(b->ptr,num,0);
287 ret=(long)fseek(fp,num,0);
304 b->shutdown=(int)num&BIO_CLOSE;
320 UP_fsetmod(b->ptr,(char)((num&BIO_FP_TEXT)?'t':'b'));
326 if (num & BIO_FP_TEXT)
333 if (num & BIO_FP_TEXT)
340 if (num & BIO_FP_TEXT
    [all...]
bss_conn.c 92 /* int socket; this will be kept in bio->num so that it is
101 static int conn_write(BIO *h, const char *buf, int num);
221 b->num=ret;
228 if (!BIO_socket_nbio(b->num,1))
241 i=setsockopt(b->num,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
255 ret=connect(b->num,
282 i=BIO_sock_error(b->num);
361 bi->num=INVALID_SOCKET;
374 if (bio->num != INVALID_SOCKET)
378 shutdown(bio->num,2)
    [all...]
bss_dgram.c 100 static int dgram_write(BIO *h, const char *buf, int num);
109 static int dgram_sctp_write(BIO *h, const char *buf, int num);
224 bi->num=0;
256 SHUTDOWN2(a->num);
280 if (getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
290 if ( getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
326 if (setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
330 if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, &timeleft,
350 if (setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
354 if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, &(data->socket_timeout)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
logging.cc 16 void AppendNumberTo(std::string* str, uint64_t num) {
18 snprintf(buf, sizeof(buf), "%llu", (unsigned long long) num);
36 std::string NumberToString(uint64_t num) {
38 AppendNumberTo(&r, num);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_sampler.c 155 unsigned num,
162 assert(start + num <= PIPE_MAX_SAMPLERS);
169 if (start + num <= svga->curr.num_samplers &&
170 !memcmp(svga->curr.sampler + start, samplers, num * sizeof(void *))) {
175 for (i = 0; i < num; i++)
180 unsigned j = MAX2(svga->curr.num_samplers, start + num);
192 unsigned num, void **sampler)
194 svga_bind_sampler_states(pipe, PIPE_SHADER_FRAGMENT, 0, num, sampler);
236 unsigned num,
245 assert(start + num <= Elements(svga->curr.sampler_views))
    [all...]
  /external/e2fsprogs/lib/ext2fs/
bitmaps.c 246 ext2_ino_t start, unsigned int num,
251 start, num, in));
255 __u64 start, size_t num,
258 return (ext2fs_set_generic_bmap_range(bmap, start, num, in));
262 ext2_ino_t start, unsigned int num,
267 start, num, out));
271 __u64 start, size_t num,
274 return (ext2fs_get_generic_bmap_range(bmap, start, num, out));
278 blk_t start, unsigned int num,
283 start, num, in))
    [all...]
bmap64.h 81 unsigned int num);
83 unsigned int num);
85 __u64 arg, unsigned int num);
87 __u64 start, size_t num, void *in);
89 __u64 start, size_t num, void *out);
  /external/fonttools/Lib/fontTools/
unicode.py 10 num, name = line.split(';')[:2]
12 num = int(num, 16)
13 unicodes[num] = name
  /external/libvpx/libvpx/vp9/common/
vp9_prob.h 54 static INLINE vp9_prob get_prob(int num, int den) {
55 return (den == 0) ? 128u : clip_prob(((int64_t)num * 256 + (den >> 1)) / den);
58 static INLINE vp9_prob get_prob(int num, int den) {
59 return (den == 0) ? 128u : clip_prob((num * 256 + (den >> 1)) / den);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pmu-bison.h 57 unsigned long num; member in union:YYSTYPE
  /external/llvm/include/llvm/Support/
PluginLoader.h 26 static std::string& getPlugin(unsigned num);
  /external/lzma/CPP/7zip/UI/Console/
PercentPrinter.cpp 14 static void ClearPrev(char *p, int num)
17 for (i = 0; i < num; i++) *p++ = '\b';
18 for (i = 0; i < num; i++) *p++ = ' ';
19 for (i = 0; i < num; i++) *p++ = '\b';
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_sampler.c 155 unsigned num,
162 assert(start + num <= PIPE_MAX_SAMPLERS);
169 if (start + num <= svga->curr.num_samplers &&
170 !memcmp(svga->curr.sampler + start, samplers, num * sizeof(void *))) {
175 for (i = 0; i < num; i++)
180 unsigned j = MAX2(svga->curr.num_samplers, start + num);
192 unsigned num, void **sampler)
194 svga_bind_sampler_states(pipe, PIPE_SHADER_FRAGMENT, 0, num, sampler);
236 unsigned num,
245 assert(start + num <= Elements(svga->curr.sampler_views))
    [all...]
  /external/e2fsprogs/ext2ed/
blockbitmap_com.c 118 long entry_num,num=1; local
124 num=atol (buffer);
129 if (num > file_system_info.super_block.s_blocks_per_group-entry_num) {
134 while (num) { /* And call allocate_block */
136 num--;entry_num++;
147 long entry_num,num=1; local
153 num=atol (buffer);
157 if (num > file_system_info.super_block.s_blocks_per_group-entry_num) {
162 while (num) {
164 num--;entry_num++
    [all...]
inodebitmap_com.c 83 long entry_num,num=1; local
89 num=atol (buffer);
93 if (num > file_system_info.super_block.s_inodes_per_group-entry_num) {
98 while (num) {
100 num--;entry_num++;
109 long entry_num,num=1; local
115 num=atol (buffer);
119 if (num > file_system_info.super_block.s_inodes_per_group-entry_num) {
124 while (num) {
126 num--;entry_num++
    [all...]
  /external/elfutils/0.153/libelf/
elf_getshdrstrndx.c 102 Elf32_Word num; local
104 num = (elf->class == ELFCLASS32
110 if (unlikely (num == SHN_XINDEX))
119 num = elf->state.elf32.scns.data[0].shdr.e32->sh_link;
131 num = ((Elf32_Shdr *) (elf->map_address + offset))->sh_link;
150 num = shdr_mem.sh_link;
157 num = elf->state.elf64.scns.data[0].shdr.e64->sh_link;
169 num = ((Elf64_Shdr *) (elf->map_address + offset))->sh_link;
188 num = shdr_mem.sh_link;
195 *dst = num;
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
DataTypes.cpp 32 Float_t(float num = 0.0f) : f(num) {}
82 bool num = false; local
84 if (num && str[idx] == 'e') {
93 num = str[idx] >= '0' && str[idx] <= '9';
  /external/e2fsprogs/intl/
plural-exp.c 43 .operation = num,
46 .num = 1
77 if (plone.val.num == 0)
83 plone.operation = num;
84 plone.val.num = 1;
  /external/e2fsprogs/lib/e2p/
mntopts.c 60 int num; local
73 num = strtol(string+8, &eptr, 10);
74 if (num > 32 || num < 0)
78 *mask = 1 << num;
  /external/openssl/crypto/aes/
aes.h 110 unsigned char *ivec, int *num, const int enc);
113 unsigned char *ivec, int *num, const int enc);
116 unsigned char *ivec, int *num, const int enc);
119 unsigned char *ivec, int *num);
124 unsigned int *num);
  /external/openssl/include/openssl/
aes.h 110 unsigned char *ivec, int *num, const int enc);
113 unsigned char *ivec, int *num, const int enc);
116 unsigned char *ivec, int *num, const int enc);
119 unsigned char *ivec, int *num);
124 unsigned int *num);
  /external/openssl/crypto/bn/
bn_asm.c 71 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
75 assert(num >= 0);
76 if (num <= 0) return(c1);
79 while (num&~3)
85 ap+=4; rp+=4; num-=4;
88 while (num)
91 ap++; rp++; num--;
97 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
101 assert(num >= 0);
102 if (num <= 0) return(c1)
    [all...]
  /art/runtime/base/
bit_vector.cc 62 bool BitVector::IsBitSet(uint32_t num) const {
64 if (num >= storage_size_ * kWordBits) {
69 return IsBitSet(storage_, num);
82 void BitVector::SetBit(uint32_t num) {
83 if (num >= storage_size_ * kWordBits) {
84 DCHECK(expandable_) << "Attempted to expand a non-expandable bitmap to position " << num;
86 /* Round up to word boundaries for "num+1" bits */
87 uint32_t new_size = BitsToWords(num + 1);
99 storage_[num >> 5] |= check_masks[num & 0x1f]
    [all...]
  /external/clang/test/SemaCXX/
compare.cpp 365 bool less_than_max(short num, T value) {
367 return (vmax >= num); // no warning
371 bool less_than_max(short num) {
374 return num < max<int>(); // expected-warning{{comparison of constant 2147483647 with expression of type 'short' is always true}}
377 void test10(short num, int x) {
378 less_than_max(num, x);
379 less_than_max<int>(num);
380 less_than_max<long>(num);
381 less_than_max<short>(num);
385 inline bool less_than_zero(T num, T value)
    [all...]
  /external/f2fs-tools/lib/
libf2fs.c 40 int log_base_2(u_int32_t num)
43 if (num <= 0 || (num & (num - 1)) != 0)
46 while (num >>= 1)
147 int num = 0; local
151 num += 32;
156 num += 16;
160 num += 8;
164 num += 4
    [all...]

Completed in 4679 milliseconds

1 2 3 4 5 6 78 91011>>