Searched refs:post (Results 1 - 25 of 152) sorted by relevance

1234567

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/jpeg/
H A Djdpostct.c75 my_post_ptr post = (my_post_ptr) cinfo->post; local
81 post->pub.post_process_data = post_process_1pass;
86 if (post->buffer == NULL) {
87 post->buffer = (*cinfo->mem->access_virt_sarray)
88 ((j_common_ptr) cinfo, post->whole_image,
89 (JDIMENSION) 0, post->strip_height, TRUE);
95 post->pub.post_process_data = cinfo->upsample->upsample;
101 if (post->whole_image == NULL)
103 post
132 my_post_ptr post = (my_post_ptr) cinfo->post; local
164 my_post_ptr post = (my_post_ptr) cinfo->post; local
208 my_post_ptr post = (my_post_ptr) cinfo->post; local
252 my_post_ptr post; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Djdpostct.c75 my_post_ptr post = (my_post_ptr) cinfo->post; local
81 post->pub.post_process_data = post_process_1pass;
86 if (post->buffer == NULL) {
87 post->buffer = (*cinfo->mem->access_virt_sarray)
88 ((j_common_ptr) cinfo, post->whole_image,
89 (JDIMENSION) 0, post->strip_height, TRUE);
95 post->pub.post_process_data = cinfo->upsample->upsample;
101 if (post->whole_image == NULL)
103 post
132 my_post_ptr post = (my_post_ptr) cinfo->post; local
164 my_post_ptr post = (my_post_ptr) cinfo->post; local
208 my_post_ptr post = (my_post_ptr) cinfo->post; local
252 my_post_ptr post; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/unit/
H A Dunit1308.c45 struct curl_httppost* post = NULL; variable in typeref:struct:curl_httppost
50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
57 fail_unless(post == last, "post and last weren't the same");
59 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
65 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
70 rc = curl_formget(post, &total_size, print_httppost_callback);
76 curl_formfree(post); variable
79 post = last = NULL;
81 rc = curl_formadd(&post,
93 curl_formfree(post); variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/matrox/
H A Dmatroxfb_misc.h8 unsigned int* in, unsigned int* feed, unsigned int* post);
12 unsigned int *post)
14 return matroxfb_PLL_calcclock(&minfo->features.pll, freq, fmax, in, feed, post);
9 PLL_calcclock(const struct matrox_fb_info *minfo, unsigned int freq, unsigned int fmax, unsigned int *in, unsigned int *feed, unsigned int *post) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/misc/
H A Dssfilter.h15 struct ssfilter *post; member in struct:ssfilter
H A Dssfilter.y20 n->post = NULL;
118 $$->post = $3;
123 $$->post = $2;
129 $$->post = $3;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/libsmbclient/smbwrapper/
H A Dsmbsh.c58 char line[PATH_MAX], pre[PATH_MAX], post[PATH_MAX]; local
65 *pre = *post = '\0';
76 smbw_strlcat(post, " ", sizeof(post));
77 smbw_strlcat(post, optarg, sizeof(post));
129 smbw_strlcat(line, post, sizeof(line));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dformdata.c87 struct curl_httppost *post; local
88 post = calloc(1, sizeof(struct curl_httppost));
89 if(post) {
90 post->name = name;
91 post->namelength = (long)(name?(namelength?namelength:strlen(name)):0);
92 post->contents = value;
93 post->contentslength = (long)contentslength;
94 post->buffer = buffer;
95 post->bufferlength = (long)bufferlength;
96 post
312 struct curl_httppost *post = NULL; local
1148 Curl_getformdata(struct SessionHandle *data, struct FormData **finalform, struct curl_httppost *post, const char *custom_content_type, curl_off_t *sizep) argument
[all...]
H A Dformdata.h75 struct curl_httppost *post,
88 * the post).
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A DMakefile.inc3 fopen ftpget ftpgetresp ftpupload getinfo getinmemory http-post httpput \
4 https multi-app multi-debugcallback multi-double multi-post multi-single \
5 persistant post-callback postit2 sepheaders simple simplepost simplessl \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dpcm_timer.c34 unsigned long rate, mult, fsize, l, post; local
50 post = 1;
53 post *= 2;
60 runtime->timer_resolution = (mult * fsize / rate) * post;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-mx3/
H A Dclock-imx31.c39 static void __calc_pre_post_dividers(u32 div, u32 *pre, u32 *post) argument
45 *post = 64;
61 *post = (div + *pre - 1) / *pre;
64 *post = 1;
67 *post = div;
261 u32 reg, pre, post; local
267 post = (reg & MXC_CCM_PDR0_CSI_PODF_MASK) >>
269 post++;
270 return clk_get_rate(clk->parent) / (pre * post);
275 u32 pre, post, paren local
288 u32 reg, div, pre, post, parent = clk_get_rate(clk->parent); local
342 u32 pre, post; local
357 u32 reg, div, pre, post, parent = clk_get_rate(clk->parent); local
[all...]
H A Dclock-imx35.c50 static void calc_dividers(u32 div, u32 *pre, u32 *post, u32 maxpost) argument
79 *post = (div + *pre - 1) / *pre;
83 static void calc_dividers_3_6(u32 div, u32 *pre, u32 *post) argument
87 *post = 64;
89 calc_dividers(div, pre, post, 64);
92 *post = 1;
95 *post = div;
100 static void calc_dividers_3_3(u32 div, u32 *pre, u32 *post) argument
103 *pre = *post = 8;
105 calc_dividers(div, pre, post,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/libtest/
H A Dlib510.c26 static const char *post[]={ variable
47 data = post[pooh->counter];
H A Dlib579.c26 static const char * const post[]={ variable
76 data = post[pooh->counter];
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/opt/broken/
H A Dcomm.sh27 local post="${TMP_PREFIX}/readycloud_r.post"
28 echo "${1}" > "${post}"
29 comm_post_file "${post}" "${2}" || {
30 # rm -f "${post}"
33 # rm -f "${post}"
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dparavirt_types.h524 pre, post, ...) \
534 post \
544 post \
555 #define __PVOP_CALL(rettype, op, pre, post, ...) \
557 EXTRA_CLOBBERS, pre, post, ##__VA_ARGS__)
559 #define __PVOP_CALLEESAVE(rettype, op, pre, post, ...) \
562 pre, post, ##__VA_ARGS__)
565 #define ____PVOP_VCALL(op, clbr, call_clbr, extra_clbr, pre, post, ...) \
571 post \
579 #define __PVOP_VCALL(op, pre, post,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/
H A Drefcounttree.h85 struct ocfs2_post_refcount *post);
92 struct ocfs2_post_refcount *post);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libcsc-0.82.3/doc/manl/
H A Dcsc_notify.l21 CSCnotificationPost - post to a notification in a board
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_java_swig57 perl -p $SWIG_DIR/java-post.pl < $f > $JAVA_SRCDIR/$f || exit $?
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drecd005.tcl202 diff(initial,post-$op):diff($init_file,$final_file) \
208 diff(post-$op,pre-commit):diff($afterop_file,$final_file) \
228 diff(initial,post-$op):diff($init_file,$final_file) \
234 diff(pre-commit,post-$op):diff($afterop_file,$final_file) \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-x86_64/
H A Dsetjmp.S10 # %rsp (post-return)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dfloor1.c111 /* save out the post list */
156 /* read the post list */
172 /* don't allow repeated values in post list as they'd result in
220 /* we actually need the post values too */
616 for(i=0;i<posts;i++)loneighbor[i]=0; /* 0 for the implicit 0 post */
617 for(i=0;i<posts;i++)hineighbor[i]=1; /* 1 for the implicit post at n */
763 /* overly simpleminded--- look again post 1.2 */
776 int *post,int *ilogmask){
787 if(post){
789 int val=post[
774 floor1_encode(oggpack_buffer *opb,vorbis_block *vb, vorbis_look_floor1 *look, int *post,int *ilogmask) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/tre-0.8.0/
H A Dtre.spec12 Requires(post): /sbin/ldconfig
20 %post
107 - added %post/%postun ldconfig scriplets.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/perlasm/
H A Dx86masm.pl40 my($post,$ret);
54 else { $post=$addr; }
66 $ret .= "$post]";

Completed in 289 milliseconds

1234567