HomeSort by relevance Sort by last modified time
    Searched refs:dmp (Results 1 - 15 of 15) 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/chromium_org/third_party/skia/tools/
skdiff_utils.h 48 DiffMetricProc dmp,
skdiff_utils.cpp 137 DiffMetricProc dmp,
152 compute_diff(drp, dmp, colorThreshold);
skdiff_image.cpp 21 static void create_diff_images (DiffMetricProc dmp,
72 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
skdiff_main.cpp 330 static void create_diff_images (DiffMetricProc dmp,
454 create_and_write_diff_image(drp, dmp, colorThreshold,
  /external/skia/tools/
skdiff_utils.h 48 DiffMetricProc dmp,
skdiff_utils.cpp 137 DiffMetricProc dmp,
152 compute_diff(drp, dmp, colorThreshold);
skdiff_image.cpp 21 static void create_diff_images (DiffMetricProc dmp,
72 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
skdiff_main.cpp 330 static void create_diff_images (DiffMetricProc dmp,
454 create_and_write_diff_image(drp, dmp, colorThreshold,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader.py 64 for dmp in [f for f in files if f.endswith(self._file_extension())]:
65 dmp_file = self._host.filesystem.join(root, dmp)
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
stress_iio.c 53 static void HandleTap(struct dmp_struct *dmp, int tap);
54 static void sipmle_print(struct dmp_struct *dmp, int d){
55 printf("%s:%d\n", dmp->fname, d);
97 static void HandleTap(struct dmp_struct *dmp, int tap)
135 perror("dmp fail");
244 perror("dmp fail");
303 printf("get DMP event: %s\n", dev_dir_name);
  /hardware/invensense/60xx/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);
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
ml_load_dmp.c 18 * @brief functions for writing dmp firmware.
41 #error "DMP image size is larger than available memory"
246 inv_error_t inv_write_dmp_data(FILE *fd, const unsigned char *dmp, size_t len)
256 MPL_LOGI("dmp firmware size to write = %d", len);
261 bytesWritten = fwrite(dmp, 1, len, fd);
289 perror("dmp fail");
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_load_dmp.c 18 * @brief functions for writing dmp firmware.
217 inv_error_t inv_write_dmp_data(FILE *fd, const unsigned char *dmp, size_t len)
227 MPL_LOGI("dmp firmware size to write = %d", len);
232 bytesWritten = fwrite(dmp, 1, len, fd);
260 perror("dmp fail");

Completed in 630 milliseconds