Searched refs:modes (Results 76 - 100 of 160) sorted by relevance

1234567

/external/boringssl/src/crypto/modes/
H A Dctr.c48 #include <openssl/modes.h>
H A Dcbc.c48 #include <openssl/modes.h>
H A Dcfb.c49 #include <openssl/modes.h>
H A Dgcm_test.c55 #include <openssl/modes.h>
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCFBBlockCipher.java1 package org.bouncycastle.crypto.modes;
H A DCTSBlockCipher.java1 package org.bouncycastle.crypto.modes;
H A DSICBlockCipher.java1 package org.bouncycastle.crypto.modes;
/external/libopus/tests/
H A Dtest_opus_decode.c63 unsigned char modes[4096]; local
214 fprintf(stdout," dec[all] all 2-byte prefix for length 3 and PLC, all modes (64) OK.\n");
234 /*We only test a subset of the modes here simply because the longer
299 fprintf(stdout," dec[all] random packets, all modes (64), every 8th size from from %d bytes to maximum OK.\n",2+skip);
301 debruijn2(64,modes);
306 packet[0]=modes[i]<<2;
333 packet[0]=modes[i]<<2;
/external/libvorbis/lib/
H A Dsynthesis.c154 int v=ci->modes;
H A Dinfo.c166 for(i=0;i<ci->modes;i++)
270 /* all of the real encoding details are here. The modes, books,
326 ci->modes=oggpack_read(opb,6)+1;
327 if(ci->modes<=0)goto err_out;
328 for(i=0;i<ci->modes;i++){
532 /* modes */
533 oggpack_write(opb,ci->modes-1,6);
534 for(i=0;i<ci->modes;i++){
613 /* third header packet (modes/codebooks) ****************************/
/external/mesa3d/src/glx/
H A Dpixel.c78 ** Copy bitmap data from clients packed memory applying unpacking modes as the
79 ** data is transfered into the destImage buffer. Return in modes the
80 ** set of pixel modes that are to be done by the server.
159 ** Extract array from user's data applying all pixel store modes.
166 const GLvoid * userdata, GLubyte * newimage, GLubyte * modes)
255 /* Setup store modes that describe what we just did */
256 if (modes) {
258 (void) memcpy(modes, __glXDefaultPixelStore + 4, 20);
261 (void) memcpy(modes, __glXDefaultPixelStore + 0, 36);
268 ** into the clients memory using the pixel store PACK modes
164 __glFillImage(struct glx_context * gc, GLint dim, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const GLvoid * userdata, GLubyte * newimage, GLubyte * modes) argument
[all...]
H A Dglxext.c599 struct glx_config *modes, *m; local
612 modes = glx_config_create_list(nvisuals);
613 if (!modes)
623 m = modes;
646 return modes;
H A Ddrisw_glx.c518 GLXDrawable drawable, struct glx_config *modes)
521 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) modes;
535 ret = XCreateDrawable(pdp, psc->base.dpy, xDrawable, modes->visualID);
517 driswCreateDrawable(struct glx_screen *base, XID xDrawable, GLXDrawable drawable, struct glx_config *modes) argument
H A Dglx_pbuffer.c872 const struct glx_config *modes = (const struct glx_config *) config; local
874 if (apple_glx_pixmap_create(dpy, modes->screen, pixmap, modes))
/external/webp/src/enc/
H A Diterator.c337 void VP8SetIntra4Mode(const VP8EncIterator* const it, const uint8_t* modes) { argument
341 memcpy(preds, modes, 4 * sizeof(*modes));
343 modes += 4;
H A Danalysis.c230 // susceptibility and set best modes for this macroblock.
233 // Number of modes to inspect for alpha_ evaluation. We don't need to test all
234 // the possible modes during the analysis phase: we risk falling into a local
266 uint8_t modes[16]; local
289 modes[it->i4_] = mode;
300 VP8SetIntra4Mode(it, modes);
374 // final except for fast-encode settings. We can also pick some intra4 modes
/external/mesa3d/src/egl/main/
H A Deglapi.h84 typedef EGLBoolean (*ChooseModeMESA_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLScreen *screen, const EGLint *attrib_list, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
85 typedef EGLBoolean (*GetModesMESA_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLScreen *screen, EGLModeMESA *modes, EGLint mode_size, EGLint *num_mode);
/external/skia/gm/
H A Dtablecolorfilter.cpp205 ComposeColorFilterGM(const SkColor colors[], const SkXfermode::Mode modes[], argument
207 : fColors(colors), fModes(modes)
/external/blktrace/btt/
H A Doutput.c367 long long *lp = mp->modes;
409 median, nmodes > 0 ? m.modes[0] : 0, m.most_seeks);
414 fprintf(ofp, " %lld", m.modes[i]);
424 nmodes > 0 ? m.modes[0] : 0, m.most_seeks);
426 fprintf(xavgs_ofp, " %lld", m.modes[i]);
434 free(m.modes);
/external/deqp/modules/glshared/
H A DglsTextureStateQueryTests.cpp1289 const GLenum modes[] = {GL_COMPARE_REF_TO_TEXTURE, GL_NONE}; local
1293 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(modes); ++ndx)
1297 const glw::GLint value = (glw::GLint)modes[ndx];
1305 const glw::GLuint value = modes[ndx];
1310 verifyStateTextureParamInteger(result, gl, m_target, m_pname, modes[ndx], m_type);
1315 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(modes); ++ndx)
1317 gl.glTexParameteri(m_target, m_pname, modes[ndx]);
1320 verifyStateTextureParamInteger(result, gl, m_target, m_pname, modes[ndx], m_type);
1325 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(modes); ++ndx)
1327 gl.glTexParameterf(m_target, m_pname, (GLfloat)modes[nd
2024 const GLenum modes[] = {GL_COMPARE_REF_TO_TEXTURE, GL_NONE}; local
[all...]
/external/strace/
H A Dtime.c383 unsigned int modes; member in struct:__anon14516
407 tprints("{modes=");
408 printflags(adjtimex_modes, tx.modes, "ADJ_???");
450 tprints("{modes=");
451 printflags(adjtimex_modes, tx.modes, "ADJ_???");
/external/libopus/
H A DAndroid.mk21 celt/modes.c \
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DDESedeWrapEngine.java12 import org.bouncycastle.crypto.modes.CBCBlockCipher;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
H A DDES.java32 import org.bouncycastle.crypto.modes.CBCBlockCipher;
H A DDESede.java34 import org.bouncycastle.crypto.modes.CBCBlockCipher;

Completed in 859 milliseconds

1234567