Searched refs:range (Results 276 - 300 of 337) sorted by relevance

<<11121314

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drecd014.tcl414 set afterop [string range $afterop \
H A Dreputils.tcl118 set theError [string range $errorInfo 0 [expr $fnl - 1]]
185 set prefix [string range $test 0 2]
203 set prefix [string range $test 0 2]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/lib/
H A Dcopy_user_memcpy.S13 ! any other registers in the range r0-r7: trashed
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dscale.S82 | Source is within 2^14 range. To perform the int operation,
351 | Source is outside of 2^14 range. Test the sign and branch
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A Dalloc.c1024 u32 range; local
1053 range = le32_to_cpu(rec->e_cpos) +
1055 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
1209 * count covers the full theoretical range of their child list
1210 * - the range between their cpos and the cpos of the record
1546 * Trap the case where we're inserting into the theoretical range past
1547 * the _actual_ left leaf range. Otherwise, we'll rotate a record
1581 * whose range contains e_cpos.
1736 unsigned int range; local
1772 range
3600 u32 clusters_to_del, new_highest_cpos, range; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/kernel/
H A Dentry-common.S282 cmpne scno, #NR_syscalls @ check range
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/ss/
H A Dpolicydb.c540 ebitmap_destroy(&usrdatum->range.level[0].cat);
541 ebitmap_destroy(&usrdatum->range.level[1].cat);
758 * Read a MLS range structure from a policydb binary
773 printk(KERN_ERR "security: mls: range overflow\n");
779 printk(KERN_ERR "security: mls: truncated range\n");
837 if (mls_read_range_helper(&c->range, fp)) {
838 printk(KERN_ERR "security: error reading MLS range of "
1299 rc = mls_read_range_helper(&usrdatum->range, fp);
1500 "my version range %d-%d\n",
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn.h396 int BN_rand_range(BIGNUM *rnd, BIGNUM *range);
397 int BN_pseudo_rand_range(BIGNUM *rnd, BIGNUM *range);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dbn.h396 int BN_rand_range(BIGNUM *rnd, BIGNUM *range);
397 int BN_pseudo_rand_range(BIGNUM *rnd, BIGNUM *range);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Drandom.c1600 * [...... <range> .....]
1603 * a <range> with size "len" starting at the return value is inside in the
1609 unsigned long range = end - len - start; local
1613 return PAGE_ALIGN(get_random_int() % range + start);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/netxen/
H A Dnetxen_nic.h88 #define find_diff_among(a,b,range) ((a)<=(b)?((b)-(a)):((b)+(range)-(a)))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/
H A DBerkeleyDB.xs3771 #define db_key_range(db, key, range, flags) \
3772 (db->Status = ((db->dbp)->key_range)(db->dbp, db->txn, &key, &range, flags))
3788 DB_KEY_RANGE range ;
3789 range.less = range.equal = range.greater = 0.0 ;
3792 RETVAL = db_key_range(db, key, range, flags);
3794 less = range.less ;
3795 equal = range.equal;
3796 greater = range
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/rpc_server/c/
H A Ddb_server_proc.c1242 DB_KEY_RANGE range; local
1264 ret = dbp->key_range(dbp, txnp, &key, &range, flags);
1267 replyp->less = range.less;
1268 replyp->equal = range.equal;
1269 replyp->greater = range.greater;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/rpc_server/cxx/
H A Ddb_server_cxxproc.cpp1069 DB_KEY_RANGE range; local
1089 ret = dbp->key_range(txnp, &key, &range, flags);
1092 replyp->less = range.less;
1093 replyp->equal = range.equal;
1094 replyp->greater = range.greater;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/tcl/
H A Dtcl_db.c2130 * overlap with the range we've chosen. If this happens, we
2131 * need to reset all of the RPC_2ND_* flags to a new range.
2772 DB_KEY_RANGE range; local
2852 ret = dbp->key_range(dbp, txn, &key, &range, flag);
2861 myobjv[0] = Tcl_NewDoubleObj(range.less);
2862 myobjv[1] = Tcl_NewDoubleObj(range.equal);
2863 myobjv[2] = Tcl_NewDoubleObj(range.greater);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dmsmpeg4.c1368 int range, bit_size, sign, code, bits; local
1376 range = 1 << bit_size;
1390 bits = val & (range - 1);
1400 /* This is identical to h263 except that its range is multiplied by 2. */
H A Dvorbis_dec.c498 av_log(vc->avccontext, AV_LOG_ERROR, "Masterbook index %d is out of range.\n", bits);
509 av_log(vc->avccontext, AV_LOG_ERROR, "Subclass book index %d is out of range.\n", bits);
658 av_log(vc->avccontext, AV_LOG_ERROR, "classbook value %d out of range. \n", res_setup->classbook);
682 av_log(vc->avccontext, AV_LOG_ERROR, "book value %d out of range. \n", bits);
733 av_log(vc->avccontext, AV_LOG_ERROR, "magnitude channel %d out of range. \n", mapping_setup->magnitude[j]);
737 av_log(vc->avccontext, AV_LOG_ERROR, "angle channel %d out of range. \n", mapping_setup->angle[j]);
764 av_log(vc->avccontext, AV_LOG_ERROR, "submap floor value %d out of range. \n", bits);
770 av_log(vc->avccontext, AV_LOG_ERROR, "submap residue value %d out of range. \n", bits);
838 av_log(vc->avccontext, AV_LOG_ERROR, "mode mapping value %d out of range. \n", mode_setup->mapping);
1150 uint_fast16_t range local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Durldata.h1217 bool rangestringalloc; /* the range string is malloc()'ed */
1219 char *range; /* range, if used. See README for detailed specification on member in struct:UrlState
1305 STRING_SET_RANGE, /* range, if used */
H A Durl.c477 free(data->state.range);
1786 * What range of the file you want to transfer
3894 free(s->range);
3897 s->range = aprintf("%" FORMAT_OFF_TU "-", s->resume_from);
3899 s->range = strdup(data->set.str[STRING_SET_RANGE]);
3901 s->rangestringalloc = (s->range)?TRUE:FALSE;
3903 if(!s->range)
3906 /* tell ourselves to fetch this range */
3907 s->use_range = TRUE; /* enable range download */
3910 s->use_range = FALSE; /* disable range downloa
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/mm/
H A Dtlb-miss.S129 # SCR0 - base of virtual range covered by cached PGE from last ITLB miss (or 0xffffffff)
250 # SCR1 - base of virtual range covered by cached PGE from last DTLB miss (or 0xffffffff)
368 # SCR0 - base of virtual range covered by cached PGE from last ITLB miss (or 0xffffffff)
477 # SCR1 - base of virtual range covered by cached PGE from last DTLB miss (or 0xffffffff)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Defi.c263 "range=[0x%016llx-0x%016llx) (%lluMB)\n",
278 struct range { struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dscall64-64.S131 LONG_L v1, TI_ADDR_LIMIT($28) # in legal address range?
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A D03-codebook.tex314 3) iterate [i] over the range 0 ... [codebook_dimensions]-1 (once for each scalar value in the value vector) \{
347 3) iterate [i] over the range 0 ... [codebook_dimensions]-1 (once for each scalar value in the value vector) \{
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sunrpc/
H A Dxprtsock.c1111 unsigned short range = xprt_max_resvport - xprt_min_resvport; local
1112 unsigned short rand = (unsigned short) net_random() % range;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/ospfd/
H A Dospf_vty.c418 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M",
423 "Area range prefix\n")
432 VTY_GET_IPV4_PREFIX ("area range", p, argv[1]);
437 VTY_GET_UINT32 ("range cost", cost, argv[2]);
446 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise",
450 "OSPF area range for route advertise (default)\n"
451 "Area range prefix\n"
452 "Advertise this range (default)\n")
456 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>",
461 "Area range prefi
6823 struct ospf_area_range *range = rn1->info; local
[all...]

Completed in 277 milliseconds

<<11121314