HomeSort by relevance Sort by last modified time
    Searched defs:cd (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des_opts.c 431 long ca,cb,cc,cd,ce; local
466 cd=count*8/BUFSIZE+1;
  /external/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp 189 double cd = SkDInterp(src[4], src[6], t); local
191 double bcd = SkDInterp(bc, cd, t);
SkPathOpsCubic.cpp 384 double cd = SkDInterp(src[4], src[6], t); local
386 double bcd = SkDInterp(bc, cd, t);
476 double cd = SkDInterp(src[4], src[6], t); local
478 double bcd = SkDInterp(bc, cd, t);
486 dst[10] = cd;
  /external/openssl/crypto/des/
des_opts.c 431 long ca,cb,cc,cd,ce; local
466 cd=count*8/BUFSIZE+1;
  /external/qemu/android/camera/
camera-capture-windows.c 106 WndCameraDevice* cd = (WndCameraDevice*)malloc(sizeof(WndCameraDevice)); local
107 if (cd != NULL) {
108 memset(cd, 0, sizeof(WndCameraDevice));
109 cd->header.opaque = cd;
113 return cd;
121 _camera_device_free(WndCameraDevice* cd)
123 if (cd != NULL) {
124 if (cd->cap_window != NULL) {
126 capDriverDisconnect(cd->cap_window)
708 CameraDevice* cd; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 42 size_t SDL_iconv(SDL_iconv_t cd,
48 retCode = iconv(cd, (char **)inbuf, inbytesleft, outbuf, outbytesleft);
50 retCode = iconv(cd, inbuf, inbytesleft, outbuf, outbytesleft);
197 SDL_iconv_t cd = (SDL_iconv_t)SDL_malloc(sizeof(*cd)); local
198 if ( cd ) {
199 cd->src_fmt = src_fmt;
200 cd->dst_fmt = dst_fmt;
201 return cd;
207 size_t SDL_iconv(SDL_iconv_t cd,
817 SDL_iconv_t cd; local
    [all...]
  /external/skia/src/pathops/
SkReduceOrder.cpp 189 double cd = SkDInterp(src[4], src[6], t); local
191 double bcd = SkDInterp(bc, cd, t);
  /ndk/sources/android/support/src/musl-locale/
iconv.c 105 int iconv_close(iconv_t cd)
145 unsigned long cd = (unsigned long)cd0; local
146 unsigned to = cd & 0xffff;
147 unsigned from = cd >> 16;
  /bootable/recovery/applypatch/
imgdiff.c 224 unsigned char* cd = img+cdoffset; local
226 if (!(cd[0] == 0x50 && cd[1] == 0x4b && cd[2] == 0x01 && cd[3] == 0x02)) {
231 int clen = Read4(cd+20); // compressed len
232 int ulen = Read4(cd+24); // uncompressed len
233 int nlen = Read2(cd+28); // filename len
234 int xlen = Read2(cd+30); // extra field len
235 int mlen = Read2(cd+32); // file comment le
    [all...]
  /external/ceres-solver/include/ceres/
rotation.h 496 T cd = c * d; local
500 R(1, 0) = T(2) * (ad + bc); R(1, 1) = aa - bb + cc - dd; R(1, 2) = T(2) * (cd - ab); // NOLINT
501 R(2, 0) = T(2) * (bd - ac); R(2, 1) = T(2) * (ab + cd); R(2, 2) = aa - bb - cc + dd; // NOLINT
  /external/ceres-solver/internal/ceres/
autodiff_test.cc 117 A cd = c*d; local
121 R(1, 0) = A(2)*(ad+bc); R(1, 1) = aa-bb+cc-dd; R(1, 2) = A(2)*(cd-ab); // NOLINT
122 R(2, 0) = A(2)*(bd-ac); R(2, 1) = A(2)*(ab+cd); R(2, 2) = aa-bb-cc+dd; // NOLINT
  /external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp 500 SkScalar cd = SkScalarInterp(src[4], src[6], t);
502 SkScalar bcd = SkScalarInterp(bc, cd, t);
573 SkScalar cd = SkScalarInterp(src[4], src[6], t); local
575 SkScalar bcd = SkScalarInterp(bc, cd, t);
583 dst[10] = cd;
    [all...]
SkStroke.cpp 278 SkVector cd = pts[3] - pts[2]; local
282 bool degenerateCD = degenerate_vector(cd);
297 cd = pts[3] - pts[1];
298 degenerateCD = degenerate_vector(cd);
303 SkAssertResult(set_normal_unitnormal(cd, fRadius, normalCD, unitNormalCD));
326 // normals for CD
  /external/libppp/src/
physical.h 46 /* A cd ``necessity'' value */
52 struct cd { struct
61 struct cd cd; member in struct:device
114 struct cd cd; member in struct:physical::__anon22845
physical.c 222 p->cfg.cd.necessity = CD_DEFAULT;
223 p->cfg.cd.delay = 0; /* reconfigured or device specific default */
448 struct cd *cd; local
522 prompt_Printf(arg->prompt, " CD check delay: ");
523 cd = p->handler ? &p->handler->cd : &p->cfg.cd;
524 if (cd->necessity == CD_NOTREQUIRED)
525 prompt_Printf(arg->prompt, "no cd");
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macos/
SDL_syscdrom_c.h 24 /* This is the MacOS specific header for the SDL CD-ROM API
31 #define kUserEject 80 /* Enable/disable the CD-ROM eject button */
41 #define kSetTrackList 122 /* Set the track program for the audio CD to play */
42 #define kGetTrackList 123 /* Get the track program the audio CD is playing */
43 #define kGetTrackIndex 124 /* Get the track index the audio CD is playing */
48 #define kGetDriveType 96 /* Get the type of the physical CD-ROM drive */
50 #define kGetBlockSize 98 /* Get current block size of the CD-ROM drive */
69 #define kStatusPaused 1 /* CD-ROM device in Hold Track ("Pause") state */
122 } cd; member in union:CDCntrlParam::__anon26749
  /external/skia/src/core/
SkGeometry.cpp 500 SkScalar cd = SkScalarInterp(src[4], src[6], t);
502 SkScalar bcd = SkScalarInterp(bc, cd, t);
573 SkScalar cd = SkScalarInterp(src[4], src[6], t); local
575 SkScalar bcd = SkScalarInterp(bc, cd, t);
583 dst[10] = cd;
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
fft.c 280 REAL c1, c2, c3, cd, aa, aj, ak, ajm, ajp, akm, akp; local
431 cd = sin(sd);
432 cd = 2.0 * cd * cd;
458 c1 = 1.0 - cd;
476 ak = c1 - (cd * c1 + sd * s1);
477 s1 = sd * c1 - cd * s1 + s1;
542 c2 = c1 - (cd * c1 + sd * s1);
543 s1 = sd * c1 - cd * s1 + s1
    [all...]
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 141 private void cd() throws IOException { method in class:FtpURLConnection
227 cd(); method
  /bionic/libc/private/
arpa_nameser_compat.h 112 unsigned cd: 1; /* checking disabled by resolver */ member in struct:__anon694
124 unsigned cd: 1; /* checking disabled by resolver */ member in struct:__anon694
  /cts/tests/tests/database/src/android/database/cts/
AbstractWindowedCursorTest.java 159 double cd = mCursor.getDouble(COLUMN_INDEX0); local
160 assertEquals(db1, cd);
  /external/e2fsprogs/e2fsck/
pass2.c 90 struct check_dir_struct cd; local
99 clear_problem_context(&cd.pctx);
106 fix_problem(ctx, PR_2_PASS_HEADER, &cd.pctx);
111 cd.pctx.errcode = 0;
113 cd.pctx.errcode = ext2fs_create_icount2(fs,
117 if (cd.pctx.errcode) {
118 fix_problem(ctx, PR_2_ALLOCATE_ICOUNT, &cd.pctx);
132 cd.buf = buf;
133 cd.ctx = ctx;
134 cd.count = 1
721 struct check_dir_struct *cd; local
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 422 final ConstructorDescriptor cd = cds [i]; local
425 dout.writeInt (cd.m_modifiers);
426 dout.writeUTF (cd.m_descriptor.replace ('/', '.'));
  /external/harfbuzz/src/
harfbuzz-open.h 253 } cd; member in struct:HB_ClassDefinition_
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-open.h 253 } cd; member in struct:HB_ClassDefinition_

Completed in 1345 milliseconds

12 3 4 5