Searched refs:post (Results 176 - 200 of 317) sorted by relevance

1234567891011>>

/external/dnsmasq/contrib/Suse/
H A Ddnsmasq-suse.spec78 %post
/external/libpcap/msdos/
H A Dpkt_rx0.asm143 jne @post ; AX=1: second call, do post process
172 @post: or si, si ; DS:SI->_pktRxBuf[n][n].destinAdr
/external/speex/libspeex/
H A Dpreprocess.c53 J.-M. Valin, J. Rouat, and F. Michaud, "Microphone array post-filter for separation
216 spx_word16_t *post; /**< A-posteriori SNR */ member in struct:SpeexPreprocessState_
459 st->post = (spx_word16_t*)speex_alloc((N+M)*sizeof(spx_word16_t));
491 st->post[i]=SHL16(1, SNR_SHIFT);
546 speex_free(st->post);
800 st->post[i] = SUB16(DIV32_16_Q8(ps[i],tot_noise), QCONST16(1.f,SNR_SHIFT));
801 st->post[i]=MIN16(st->post[i], QCONST16(100.f,SNR_SHIFT));
806 /* A priori SNR update = gamma*max(0,post) + (1-gamma)*old/noise */
807 st->prior[i] = EXTRACT16(PSHR32(ADD32(MULT16_16(gamma,MAX16(0,st->post[
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU.h406 IndexVector post, iwork; local
408 internal::treePostorder(m_mat.cols(), m_etree, post);
414 for (Index i = 0; i < m; ++i) iwork(post(i)) = post(m_etree(i));
417 // Postmultiply A*Pc by post, i.e reorder the matrix according to the postorder of the etree
420 post_perm.indices()(i) = post(i);
/external/eigen/Eigen/src/OrderingMethods/
H A DAmd.h60 Index cs_tdfs(Index j, Index k, Index *head, const Index *next, Index *post, Index *stack) argument
63 if(!head || !next || !post || !stack) return (-1); /* check inputs */
72 post[k++] = p; /* node p is the kth postordered node */
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DAsyncApiTest.java135 @Test public void post() throws Exception { method in class:AsyncApiTest
141 .post(Request.Body.create(MediaType.parse("text/plain"), "def"))
375 .post(Request.Body.create(MediaType.parse("text/plain"), "body!"))
/external/ceres-solver/scripts/
H A Dceres-solver.spec96 %post -p /sbin/ldconfig
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_swap_control.spec15 Deployed in DRI drivers post-XFree86 4.3.
/external/jpeg/
H A Djdmaster.c246 * post-IDCT limiting thus:
252 * For the post-IDCT step, we want to convert the data from signed to unsigned
254 * So the post-IDCT limiting table ends up looking like this:
262 * We can save some space by overlapping the start of the post-IDCT table
263 * with the simpler range limiting table. The post-IDCT table begins at
287 table += CENTERJSAMPLE; /* Point to where post-IDCT table starts */
288 /* End of simple table, rest of first half of post-IDCT table */
291 /* Second half of post-IDCT table */
470 (*cinfo->post->start_pass) (cinfo, JBUF_CRANK_DEST);
495 (*cinfo->post
[all...]
/external/libcap-ng/libcap-ng-0.7/
H A Dlibcap-ng.spec84 %post -p /sbin/ldconfig
/external/libogg/
H A Dlibogg.spec53 %post -p /sbin/ldconfig
/external/libvorbis/
H A Dlibvorbis.spec58 %post -p /sbin/ldconfig
/external/mesa3d/docs/
H A DMESA_swap_control.spec15 Deployed in DRI drivers post-XFree86 4.3.
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jdmaster.c224 * post-IDCT limiting thus:
230 * For the post-IDCT step, we want to convert the data from signed to unsigned
232 * So the post-IDCT limiting table ends up looking like this:
240 * We can save some space by overlapping the start of the post-IDCT table
241 * with the simpler range limiting table. The post-IDCT table begins at
265 table += CENTERJSAMPLE; /* Point to where post-IDCT table starts */
266 /* End of simple table, rest of first half of post-IDCT table */
269 /* Second half of post-IDCT table */
448 (*cinfo->post->start_pass) (cinfo, JBUF_CRANK_DEST);
473 (*cinfo->post
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djdmaster.c246 * post-IDCT limiting thus:
252 * For the post-IDCT step, we want to convert the data from signed to unsigned
254 * So the post-IDCT limiting table ends up looking like this:
262 * We can save some space by overlapping the start of the post-IDCT table
263 * with the simpler range limiting table. The post-IDCT table begins at
287 table += CENTERJSAMPLE; /* Point to where post-IDCT table starts */
288 /* End of simple table, rest of first half of post-IDCT table */
291 /* Second half of post-IDCT table */
470 (*cinfo->post->start_pass) (cinfo, JBUF_CRANK_DEST);
495 (*cinfo->post
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowApplication.java202 shadowOf(Looper.getMainLooper()).post(new Runnable() {
214 shadowOf(Looper.getMainLooper()).post(new Runnable() {
/external/tremolo/Tremolo/
H A DmdctLARM.s51 @ r1 = post
57 SUB r1, r2, r1 @ r1 = r - post
58 SUBS r1, r1, #16 @ r1 = r - post - 16
110 @ r1 = post
116 SUB r1, r1, r2 @ r1 = post - l
117 MOV r1, r1, ASR #1 @ r1 = (post - l)>>1
118 SUBS r1, r1, #16 @ r1 = ((post - l)>>1) - 4
179 @ r1 = post
192 SUBS r1, r3, r1 @ r1 = (r - post)
219 @ r1 = post
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwContentsClientCallbackHelperTest.java161 mainHandler.post(postPictures);
168 // Then we post a runnable on the callback handler thread. Since both posts have happened
/external/chromium_org/media/base/android/java/src/org/chromium/media/
H A DUsbMidiDeviceAndroid.java168 mHandler.post(new Runnable() {
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
H A Dvp9_iht4x4_add_neon.asm227 ; do the stores in reverse order with negative post-increment, by changing
233 vst1.32 {d26[0]}, [r1] ; no post-increment
/external/chromium_org/third_party/ots/src/
H A Dots.h208 F(post, POST) \
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Ddiff_viewer.js298 $http.post("/commit_rebaselines", {
/external/chromium_org/tools/usb_gadget/
H A Decho_gadget.py212 def post(self): member in class:RegisterHandlers.WebConfigureHandler
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DAbstractTextPropertyEditor.java255 // post event
256 Display.getCurrent().post(lowEvent);
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_iht4x4_add_neon.asm227 ; do the stores in reverse order with negative post-increment, by changing
233 vst1.32 {d26[0]}, [r1] ; no post-increment

Completed in 696 milliseconds

1234567891011>>