HomeSort by relevance Sort by last modified time
    Searched refs:dmp (Results 1 - 10 of 10) sorted by null

  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 39 private diff_match_patch dmp; field in class:diff_match_patch_test
46 dmp = new diff_match_patch();
55 assertEquals("diff_commonPrefix: Null case.", 0, dmp.diff_commonPrefix("abc", "xyz"));
57 assertEquals("diff_commonPrefix: Non-null case.", 4, dmp.diff_commonPrefix("1234abcdef", "1234xyz"));
59 assertEquals("diff_commonPrefix: Whole case.", 4, dmp.diff_commonPrefix("1234", "1234xyz"));
64 assertEquals("diff_commonSuffix: Null case.", 0, dmp.diff_commonSuffix("abc", "xyz"));
66 assertEquals("diff_commonSuffix: Non-null case.", 4, dmp.diff_commonSuffix("abcdef1234", "xyz1234"));
68 assertEquals("diff_commonSuffix: Whole case.", 4, dmp.diff_commonSuffix("1234", "xyz1234"));
73 assertNull("diff_halfMatch: No match.", dmp.diff_halfMatch("1234567890", "abcdef"));
75 assertArrayEquals("diff_halfMatch: Single Match #1.", new String[]{"12", "90", "a", "z", "345678"}, dmp.diff_halfMatch("1234567890", "a345678z"))
    [all...]
  /external/blktrace/btt/
devmap.c 33 struct devmap *dmp; local
38 dmp = malloc(sizeof(struct devmap));
39 if (sscanf(line, "%s %s", dmp->device, dmp->devno) != 2) {
40 free(dmp);
44 list_add_tail(&dmp->head, &all_devmaps);
55 struct devmap *dmp = list_entry(p, struct devmap, head); local
57 if (!strcmp(this, dmp->devno))
58 return dmp->device;
87 struct devmap *dmp = list_entry(p, struct devmap, head) local
    [all...]
  /external/skia/tools/
skdiff_utils.h 48 DiffMetricProc dmp,
skdiff_image.cpp 19 static void create_diff_images (DiffMetricProc dmp,
70 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
skdiff_utils.cpp 137 DiffMetricProc dmp,
154 compute_diff(drp, dmp, colorThreshold);
skdiff_main.cpp 313 static void create_diff_images (DiffMetricProc dmp,
429 create_and_write_diff_image(drp, dmp, colorThreshold,
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
MapModel2D.java 148 double dmp = NavCalculator.computeDMPClarkeSpheroid(centre.getLatitude(), local
164 y = yCentre + (int) ((dmp) / minutesPerPixel);
167 y = yCentre - (int) ((dmp) / minutesPerPixel);
170 y = yCentre + (int) ((dmp) / minutesPerPixel);
173 y = yCentre - (int) ((dmp) / minutesPerPixel);
176 y = yCentre + (int) ((dmp) / minutesPerPixel);
179 y = yCentre - (int) ((dmp) / minutesPerPixel);
MapModel3D.java 177 double dmp = NavCalculator.computeDMPClarkeSpheroid(centre.getLatitude(), local
193 z = zCentre - (int) ((dmp) / minutesPerWorldUnit);
196 z = zCentre + (int) ((dmp) / minutesPerWorldUnit);
199 z = zCentre - (int) ((dmp) / minutesPerWorldUnit);
202 z = zCentre + (int) ((dmp) / minutesPerWorldUnit);
205 z = zCentre - (int) ((dmp) / minutesPerWorldUnit);
208 z = zCentre + (int) ((dmp) / minutesPerWorldUnit);
NavCalculator.java 96 double dmp = (float) computeDMPClarkeSpheroid(p1.getLatitude(), p2.getLatitude()); local
98 trueCourse = (float) Math.toDegrees(Math.atan(dLong / dmp));
  /hardware/invensense/libsensors_iio/software/core/mllite/linux/
ml_load_dmp.c 18 * @brief functions for writing dmp firmware.
245 inv_error_t inv_write_dmp_data(FILE *fd, const unsigned char *dmp, size_t len)
254 MPL_LOGI("dmp firmware size to write = %d", len);
259 bytesWritten = fwrite(dmp, 1, len, fd);

Completed in 183 milliseconds