Searched refs:lc (Results 201 - 225 of 442) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/demos/engines/rsaref/
H A DMakefile56 $$SHAREDCMD $$SHAREDFLAGS -o $(SHLIB) $(LIBNAME).o -L ../../.. -lcrypto -lc)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/demos/engines/zencod/
H A DMakefile47 $$SHAREDCMD $$SHAREDFLAGS -o $(SHLIB) $(LIBNAME).o -L ../../.. -lcrypto -lc)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/
H A Ddeflate.h283 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/lzma/
H A Dlzma_decoder.c858 // NOTE: We assume that lc/lp/pb are valid since they were
865 literal_init(coder->literal, options->lc, options->lp);
867 coder->literal_context_bits = options->lc;
1003 options->lc = byte - options->lp * 9;
1005 return options->lc + options->lp > LZMA_LCLP_MAX;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/
H A Ddeflate.h297 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/kernel/
H A Dentry.h59 .spillsp ar.pfs,SW(AR_PFS)+16+(off); .spillsp ar.lc,SW(AR_LC)+16+(off); \
H A Dptrace.c842 unsigned long psr, ec, lc, rnat, bsp, cfm, nat_bits, val; local
868 || access_uarea(child, PT_AR_LC, &lc, 0) < 0
890 retval |= __put_user(lc, &ppr->ar[PT_AUR_LC]);
986 unsigned long psr, rsc, ec, lc, rnat, bsp, cfm, nat_bits, val = 0; local
1026 retval |= __get_user(lc, &ppr->ar[PT_AUR_LC]);
1119 retval |= access_uarea(child, PT_AR_LC, &lc, 1);
1544 * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec
1607 * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec ar.csd ar.ssd
1695 * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec ar.csd ar.ssd
H A Dmca_asm.S82 mov ar.lc=r20
614 mov temp3=ar.lc
616 st8 [temp1]=temp3 // save ar.lc
773 ld8 temp3=[temp1] // restore ar.lc
775 mov ar.lc=temp3
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/lzma/
H A Dlzma_decoder.c858 // NOTE: We assume that lc/lp/pb are valid since they were
865 literal_init(coder->literal, options->lc, options->lp);
867 coder->literal_context_bits = options->lc;
1003 options->lc = byte - options->lp * 9;
1005 return options->lc + options->lp > LZMA_LCLP_MAX;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/aes/asm/
H A Daes-ia64.S106 mov ar.lc=te3 }
296 .save ar.lc,lcsave
297 mov lcsave=ar.lc };;
324 mov ar.lc=lcsave };;
410 mov ar.lc=lcsave }//;;
485 mov ar.lc=te3 }
675 .save ar.lc,lcsave
676 mov lcsave=ar.lc };;
703 mov ar.lc=lcsave };;
789 mov ar.lc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/aes/asm/
H A Daes-ia64.S106 mov ar.lc=te3 }
296 .save ar.lc,lcsave
297 mov lcsave=ar.lc };;
324 mov ar.lc=lcsave };;
410 mov ar.lc=lcsave }//;;
485 mov ar.lc=te3 }
675 .save ar.lc,lcsave
676 mov lcsave=ar.lc };;
703 mov ar.lc=lcsave };;
789 mov ar.lc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/kvm/
H A Dtrampoline.S216 mov r16 = ar.lc; \
262 mov ar.lc=r16; \
459 * ar.lc are corrupted.
467 mov ar.lc = r16; \
902 mov ar.lc=r16; \
919 * ar.lc are corrupted.
925 mov ar.lc=r16; \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.c409 local int ct_tally OF((deflate_state *s, int dist, int lc));
2403 local int ct_tally (s, dist, lc)
2406 int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
2409 s->l_buf[s->last_lit++] = (uch)lc;
2411 /* lc is the unmatched char */
2412 s->dyn_ltree[lc].Freq++;
2415 /* Here, lc is the match length - MIN_MATCH */
2418 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
2421 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
2457 int lc; /* matc local
2467 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/pppdump/
H A Dzlib.c409 local int ct_tally OF((deflate_state *s, int dist, int lc));
2403 local int ct_tally (s, dist, lc)
2406 int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
2409 s->l_buf[s->last_lit++] = (uch)lc;
2411 /* lc is the unmatched char */
2412 s->dyn_ltree[lc].Freq++;
2415 /* Here, lc is the match length - MIN_MATCH */
2418 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
2421 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
2457 int lc; /* matc local
2467 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dhevc_ps.c75 HEVCLocalContext *lc = s->HEVClc; local
83 GetBitContext *gb = &lc->gb;
198 HEVCLocalContext *lc = s->HEVClc; local
199 GetBitContext *gb = &lc->gb;
230 HEVCLocalContext *lc = s->HEVClc; local
231 GetBitContext *gb = &lc->gb;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/pixmaps/flags_xpm/
H A DMakefile.am125 lc.xpm \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Dtparm.c368 int lc; local
375 lc = cvtchar (sp + 2, &c) + 2;
381 lc = 2;
402 lc = cvtchar (sp, &c);
408 sp += lc;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Dfilter.t64 (sub { $_ = lc $_ ; $store_key = $_ }) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/DB_File/t/
H A Ddb-hash.t231 if ($key eq $keys[$i] && $value eq $values[$i] && $key eq lc($value)) {
567 (sub { $_ = lc $_ ; $store_key = $_ }) ;
1175 $db->filter_fetch_key (sub { lc $_ } );
1177 $db->filter_fetch_value (sub { lc $_ } );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/
H A DMakefile.in86 $(LDSHARED) -lc -o $@ $(OBJS)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dtparm.c368 int lc; local
375 lc = cvtchar (sp + 2, &c) + 2;
381 lc = 2;
402 lc = cvtchar (sp, &c);
408 sp += lc;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/common/
H A Dzlib.c529 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
2795 int _tr_tally (s, dist, lc)
2798 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
2801 s->l_buf[s->last_lit++] = (uch)lc;
2803 /* lc is the unmatched char */
2804 s->dyn_ltree[lc].Freq++;
2807 /* Here, lc is the match length - MIN_MATCH */
2810 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
2813 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
2849 int lc; /* matc local
2859 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/common/
H A Dzlib.c529 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
2795 int _tr_tally (s, dist, lc)
2798 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
2801 s->l_buf[s->last_lit++] = (uch)lc;
2803 /* lc is the unmatched char */
2804 s->dyn_ltree[lc].Freq++;
2807 /* Here, lc is the match length - MIN_MATCH */
2810 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
2813 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
2849 int lc; /* matc local
2859 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/aes/asm/
H A Daes-ia64.S84 mov ar.lc=te3 }
184 .save ar.lc,r3
187 mov r3=ar.lc }
220 mov ar.lc=r3 }
306 mov ar.lc=r3 }//;;
377 mov ar.lc=te3 }
477 .save ar.lc,r3
480 mov r3=ar.lc }
513 mov ar.lc=r3 }
599 mov ar.lc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/e1000/
H A De1000_ethtool.c1431 int i, j, k, l, lc, good_cnt, ret_val=0; local
1442 lc = ((txdr->count / 64) * 2) + 1;
1444 lc = ((rxdr->count / 64) * 2) + 1;
1447 for (j = 0; j <= lc; j++) { /* loop count loop */

Completed in 324 milliseconds

1234567891011>>