Searched refs:num (Results 501 - 525 of 1985) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbytecode.c253 /*@dependent@*/ /*@null@*/ const yasm_intnum *num; local
255 num = yasm_expr_get_intnum(&bc->multiple, 0);
256 if (num) {
257 if (yasm_intnum_sign(num) < 0) {
261 bc->mult_int = yasm_intnum_get_int(num);
355 /*@dependent@*/ /*@null@*/ const yasm_intnum *num; local
359 num = yasm_expr_get_intnum(&bc->multiple, calc_bc_dist);
360 if (!num) {
365 if (yasm_intnum_sign(num) < 0) {
369 *multiple = yasm_intnum_get_int(num);
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Drle.c92 #define APPEND( buffer, bufLimit, value, num, status){ \
98 num++; \
107 int32_t num=0; local
112 APPEND(buffer,bufLimit,ESCAPE, num, status);
115 APPEND(buffer,bufLimit,value,num, status);
121 APPEND(buffer,bufLimit,ESCAPE,num,status);
124 APPEND(buffer,bufLimit,value,num,status);
127 APPEND(buffer,bufLimit,ESCAPE,num,status);
128 APPEND(buffer,bufLimit,(uint16_t) length, num,status);
129 APPEND(buffer,bufLimit,(uint16_t)value, num, statu
[all...]
/external/mksh/src/
H A Dvar.c476 mksh_uari_t c, num, base; local
491 num = 0;
508 if (have_base || num < 1 || num > 36)
510 if ((base = num) == 1) {
526 num = 0;
539 num = num * base + c;
542 num = -num;
555 mksh_ari_u num; local
568 setint_n(struct tbl *vq, mksh_ari_t num, int newbase) argument
1102 mksh_ari_u num; local
1178 mksh_ari_u num; local
[all...]
/external/openssl/crypto/asn1/
H A Da_object.c86 int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num) argument
95 if (num == 0)
97 else if (num == -1)
98 num=strlen(buf);
102 num--;
113 if (num <= 0)
119 num--;
122 if (num <= 0) break;
132 if (num <= 0) break;
133 num
[all...]
/external/svox/pico/lib/
H A Dpicokfst.c78 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into unsigned number 'num'.
80 static void FixedBytesToUnsignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_uint32 * num) argument
84 (*num) = 0;
86 (*num) = ((*num) << 8) + (picoos_uint32)stream[*pos];
92 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into signed number 'num'.
94 static void FixedBytesToSignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_int32 * num) argument
106 (*num) = -((picoos_int32)((val - 1) / 2)) - 1;
109 (*num) = val / 2;
115 into (signed) number 'num'
116 BytesToNum(picoos_uint8 * stream, picoos_uint32 * pos, picoos_int32 * num) argument
[all...]
/external/zlib/src/examples/
H A Denough.c117 /* The array for saving results, num[], is indexed with this triplet:
151 to the num[] array as described above for the (syms, left, len) triplet.
173 local size_t size; /* number of elements in num and done */
175 local big_t *num; /* saved results array for code counting */ variable
178 /* Index function for num[] and done[] */
181 /* Free allocated space. Uses globals code, num, and done. */
192 if (num != NULL)
193 free(num);
201 Keep a record of previous results in num to prevent repeating the same
202 calculation. Uses the globals max and num
[all...]
/external/chromium_org/base/test/
H A Dtrace_event_analyzer.cc217 Query Query::Double(double num) { argument
218 return Query(num);
221 Query Query::Int(int32 num) { argument
222 return Query(static_cast<double>(num));
225 Query Query::Uint(uint32 num) { argument
226 return Query(static_cast<double>(num));
357 double* num) const {
370 *num = lhs + rhs;
373 *num = lhs - rhs;
376 *num
537 Query(double num) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_pipe.h697 static INLINE void r600_store_config_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
700 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
701 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONFIG_REG, num, 0);
709 static INLINE void r600_store_context_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
712 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
713 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONTEXT_REG, num, 0) | cb->pkt_flags;
721 static INLINE void r600_store_ctl_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
724 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
725 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CTL_CONST, num, 0) | cb->pkt_flags;
729 static INLINE void r600_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
741 eg_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
798 r600_write_array(struct radeon_winsys_cs *cs, unsigned num, unsigned *ptr) argument
805 r600_write_config_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
813 r600_write_context_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
821 r600_write_compute_context_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
828 r600_write_ctl_const_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_pipe.h697 static INLINE void r600_store_config_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
700 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
701 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONFIG_REG, num, 0);
709 static INLINE void r600_store_context_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
712 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
713 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONTEXT_REG, num, 0) | cb->pkt_flags;
721 static INLINE void r600_store_ctl_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
724 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
725 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CTL_CONST, num, 0) | cb->pkt_flags;
729 static INLINE void r600_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
741 eg_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num) argument
798 r600_write_array(struct radeon_winsys_cs *cs, unsigned num, unsigned *ptr) argument
805 r600_write_config_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
813 r600_write_context_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
821 r600_write_compute_context_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
828 r600_write_ctl_const_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_parse.cpp207 dcl.num = customlen;
276 dcl.num = read32();
279 dcl.num = read32();
283 dcl.indexable_temp.num = read32();
293 dcl.num = read32();
296 dcl.num = read32();
308 dcl.num = read32();
311 dcl.num = read32();
314 dcl.num = read32();
315 dcl.data = malloc(dcl.num * sizeo
[all...]
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dengine.c197 int num; local
205 ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE,
221 if((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
227 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
232 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
236 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
243 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
280 num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE,
281 num, NULL, NULL);
282 } while(num >
296 int loop, res, num = sk_OPENSSL_STRING_num(cmds); local
[all...]
/external/e2fsprogs/lib/e2p/
H A Dls.c59 int hr, min, num; local
67 num = secs / MONTH_INT;
68 secs -= num*MONTH_INT;
69 sprintf(buf, "%d month%s", num, (num>1) ? "s" : "");
72 num = secs / WEEK_INT;
73 secs -= num*WEEK_INT;
75 num, (num>1) ? "s" : "");
79 num
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_parse.cpp207 dcl.num = customlen;
276 dcl.num = read32();
279 dcl.num = read32();
283 dcl.indexable_temp.num = read32();
293 dcl.num = read32();
296 dcl.num = read32();
308 dcl.num = read32();
311 dcl.num = read32();
314 dcl.num = read32();
315 dcl.data = malloc(dcl.num * sizeo
[all...]
/external/openssl/apps/
H A Dengine.c197 int num; local
205 ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE,
221 if((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
227 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
232 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
236 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
243 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
280 num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE,
281 num, NULL, NULL);
282 } while(num >
296 int loop, res, num = sk_OPENSSL_STRING_num(cmds); local
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dgen_bitmap.c383 __u32 start, __u32 num,
389 if ((start < bmap->start) || (start+num-1 > bmap->real_end))
392 memcpy(out, bmap->bitmap + (start >> 3), (num+7) >> 3);
398 __u32 start, __u32 num,
404 if ((start < bmap->start) || (start+num-1 > bmap->real_end))
407 memcpy(bmap->bitmap + (start >> 3), in, (num+7) >> 3);
531 blk_t block, int num)
534 if ((block < bitmap->start) || (block+num-1 > bitmap->real_end)) {
540 bitmap, block, num);
544 ino_t inode, int num)
381 ext2fs_get_generic_bitmap_range(ext2fs_generic_bitmap bmap, errcode_t magic, __u32 start, __u32 num, void *out) argument
396 ext2fs_set_generic_bitmap_range(ext2fs_generic_bitmap bmap, errcode_t magic, __u32 start, __u32 num, void *in) argument
530 ext2fs_test_block_bitmap_range(ext2fs_block_bitmap bitmap, blk_t block, int num) argument
543 ext2fs_test_inode_bitmap_range(ext2fs_inode_bitmap bitmap, ino_t inode, int num) argument
556 ext2fs_mark_block_bitmap_range(ext2fs_block_bitmap bitmap, blk_t block, int num) argument
570 ext2fs_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap, blk_t block, int num) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dlinux.cc72 bool ProcCpuInfo::GetNumCpus(int* num) { argument
96 if (num) {
97 *num = total_cpus;
102 bool ProcCpuInfo::GetNumPhysicalCpus(int* num) { argument
111 return GetNumCpus(num);
128 if (num) {
129 *num = total_cores;
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Dsparcv9cap.c17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num) argument
19 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
20 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
22 if (num>=8 && !(num&1) &&
25 return bn_mul_mont_fpu(rp,ap,bp,np,n0,num);
27 return bn_mul_mont_int(rp,ap,bp,np,n0,num);
/external/chromium_org/third_party/skia/src/images/
H A Dbmpdecoderhelper.cpp189 int num = 0; local
193 if (num & 1) {
200 num++;
226 int num = 0; local
230 if (bpp_ == 8 || !(num & 1)) {
236 if (num & 1) {
245 num++;
/external/chromium_org/third_party/webrtc/base/
H A Dlinux.cc55 bool ProcCpuInfo::GetNumCpus(int* num) { argument
79 if (num) {
80 *num = total_cpus;
85 bool ProcCpuInfo::GetNumPhysicalCpus(int* num) { argument
94 return GetNumCpus(num);
111 if (num) {
112 *num = total_cores;
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.c44 int num; member in struct:profile_string_list
53 list->num = 0;
81 list->num = list->max = 0;
93 if (list->num+1 >= list->max) {
102 list->list[list->num++] = str;
103 list->list[list->num] = 0;
164 if (values.num == 0) {
H A Dsigcatcher.c23 int num; member in struct:str_table
311 static const char *lookup_table(int num, struct str_table *table) argument
316 if (num == p->num)
321 static const char *lookup_table_fallback(int num, struct str_table *table) argument
324 const char *ret = lookup_table(num, table);
328 snprintf(buf, sizeof(buf), "%d", num);
/external/libedit/src/
H A Dfilecomplete.c351 * 'matches' is list of strings, 'num' is number of strings in 'matches',
355 * num, so the strings are matches[1] *through* matches[num-1].
358 fn_display_match_list (EditLine *el, char **matches, size_t num, size_t width) argument
365 num--;
376 lines = (num + cols - 1) / cols;
379 qsort(matches, num, sizeof(char *), _fn_qsort_string_compare);
387 if (thisguy >= num)
533 * strings be matches[1..num-1] for compat.
/external/opencv/cvaux/src/
H A Ddecomppoly.cpp141 int num,
149 int currentNum = num;
160 if( num <= 2 ) {
164 pointExist = ( int* )malloc( num * sizeof( int ) );
166 for( i = 0; i < num; i ++ ) {
170 for( i = 0; i < num; i ++ ) {
172 if( i != num - 1 ) {
179 } // for( i = 0; i < num; i ++ )
204 for( i = 0; i < num; i ++ )
206 if( i != num
[all...]
/external/openssl/crypto/
H A Dsparcv9cap.c17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num) argument
19 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
20 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
22 if (num>=8 && !(num&1) &&
25 return bn_mul_mont_fpu(rp,ap,bp,np,n0,num);
27 return bn_mul_mont_int(rp,ap,bp,np,n0,num);
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp189 int num = 0; local
193 if (num & 1) {
200 num++;
226 int num = 0; local
230 if (bpp_ == 8 || !(num & 1)) {
236 if (num & 1) {
245 num++;

Completed in 3811 milliseconds

<<21222324252627282930>>