HomeSort by relevance Sort by last modified time
    Searched refs:post (Results 1 - 25 of 744) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libjpeg-turbo/
jdpostct.c 81 my_post_ptr post = (my_post_ptr)cinfo->post; local
87 post->pub.post_process_data = post_process_1pass;
92 if (post->buffer == NULL) {
93 post->buffer = (*cinfo->mem->access_virt_sarray)
94 ((j_common_ptr)cinfo, post->whole_image,
95 (JDIMENSION)0, post->strip_height, TRUE);
101 post->pub.post_process_data = cinfo->upsample->upsample;
107 if (post->whole_image == NULL)
109 post->pub.post_process_data = post_process_prepass
137 my_post_ptr post = (my_post_ptr)cinfo->post; local
169 my_post_ptr post = (my_post_ptr)cinfo->post; local
212 my_post_ptr post = (my_post_ptr)cinfo->post; local
256 my_post_ptr post; local
    [all...]
  /external/kmod/testsuite/rootfs-pristine/test-modprobe/softdep-loop/etc/modprobe.d/
dumb-softdep.conf 1 softdep mod-loop-b post: mod-loop-a
  /external/u-boot/arch/x86/cpu/ivybridge/
ivybridge.c 7 #include <asm/post.h>
  /external/curl/tests/unit/
unit1308.c 45 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, &last
93 curl_formfree(post); variable
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeVisitorAction.java 32 * pre() before visiting children and execute post() after visiting children.
46 public Object post(Object t); method in interface:TreeVisitorAction
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/exc/
VerifierConstraintViolatedException.java 60 /** Extends the error message with a string before ("pre") and after ("post") the
65 public void extendMessage(String pre, String post) {
72 if (post == null) {
73 post="";
75 detailMessage = pre+detailMessage+post;
AssertionViolatedException.java 51 /** Extends the error message with a string before ("pre") and after ("post") the
56 public void extendMessage(String pre, String post) {
63 if (post == null) {
64 post="";
66 detailMessage = pre+detailMessage+post;
  /external/apache-harmony/support/src/test/java/tests/support/
Support_PlatformFile.java 24 public static String getNewPlatformFile(String pre, String post) {
33 return pre + platformId + post;
  /cts/suite/audio_quality/lib/include/
Semaphore.h 41 void post();
  /external/u-boot/arch/x86/cpu/braswell/
braswell.c 8 #include <asm/post.h>
  /external/u-boot/arch/x86/cpu/qemu/
car.S 7 #include <asm/post.h>
  /external/u-boot/post/
Makefile 6 obj-y += post.o
  /external/curl/lib/
formdata.c 79 struct curl_httppost *post; local
80 post = calloc(1, sizeof(struct curl_httppost));
81 if(post) {
82 post->name = name;
83 post->namelength = (long)(name?(namelength?namelength:strlen(name)):0);
84 post->contents = value;
85 post->contentlen = contentslength;
86 post->buffer = buffer;
87 post->bufferlength = (long)bufferlength;
88 post->contenttype = contenttype
210 struct curl_httppost *post = NULL; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
postproc.h 33 YV12_BUFFER_CONFIG *post, int q, int low_var_thresh, int flag,
37 YV12_BUFFER_CONFIG *post, int q, int low_var_thresh, int flag);
postproc.c 55 static void vp8_de_mblock(YV12_BUFFER_CONFIG *post, int q) {
56 vpx_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height,
57 post->y_width, q2mbl(q));
58 vpx_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height,
59 post->y_width, q2mbl(q));
63 YV12_BUFFER_CONFIG *post, int q, int low_var_thresh
    [all...]
vp8_loopfilter.c 268 YV12_BUFFER_CONFIG *post = cm->frame_to_show; local
283 int post_y_stride = post->y_stride;
284 int post_uv_stride = post->uv_stride;
290 y_ptr = post->y_buffer;
291 u_ptr = post->u_buffer;
292 v_ptr = post->v_buffer;
339 y_ptr += post_y_stride * 16 - post->y_width;
340 u_ptr += post_uv_stride * 8 - post->uv_width;
341 v_ptr += post_uv_stride * 8 - post->uv_width;
379 y_ptr += post_y_stride * 16 - post->y_width
390 YV12_BUFFER_CONFIG *post = cm->frame_to_show; local
480 YV12_BUFFER_CONFIG *post = cm->frame_to_show; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Eiffel.py 21 Pre- and post-conditions for a method, being implemented as methods
23 much of the same effect of Eiffel, where pre- and post-conditions are
26 post-condition, it must manually merge the base class' pre- or
27 post-condition with that defined in the derived class', for example:
54 post-conditions can be disabled (separately, on a per-class basis).
56 A different design would have the pre- or post-condition testing
59 and new pre-/post-conditions. All this is left as an exercise to the
71 # the pre-/post-condition testing methods. These are harmless
79 self.post = getattr(inst, self.__name__ + "_post")
81 self.post = None
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
ReentrantEventsTest.java 42 bus.post(FIRST);
57 bus.post(SECOND);
77 bus.post(FIRST);
85 bus.post(SECOND);
  /external/python/cpython2/Demo/metaclasses/
Eiffel.py 21 Pre- and post-conditions for a method, being implemented as methods
23 much of the same effect of Eiffel, where pre- and post-conditions are
26 post-condition, it must manually merge the base class' pre- or
27 post-condition with that defined in the derived class', for example:
54 post-conditions can be disabled (separately, on a per-class basis).
56 A different design would have the pre- or post-condition testing
59 and new pre-/post-conditions. All this is left as an exercise to the
71 # the pre-/post-condition testing methods. These are harmless
79 self.post = getattr(inst, self.__name__ + "_post")
81 self.post = Non
    [all...]
  /external/u-boot/post/lib_powerpc/fpu/
20001122-1.c 12 #include <post.h>
20010114-2.c 12 #include <post.h>
20010226-1.c 12 #include <post.h>
980619-1.c 12 #include <post.h>
acc1.c 12 #include <post.h>
  /cts/suite/audio_quality/lib/src/audio/
AudioLocal.cpp 77 mAudioThreadWait.post();
86 mAudioThreadWait.post();
124 mClientCompletionWait.post();
133 mClientCompletionWait.post();
176 mClientCommandWait.post();

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 91011>>