HomeSort by relevance Sort by last modified time
    Searched refs:flat (Results 51 - 75 of 160) sorted by null

1 23 4 5 6 7

  /external/chromium_org/v8/src/
json-stringifier.h 822 String::FlatContent flat = string->GetFlatContent(); local
823 ASSERT(flat.IsAscii());
824 return flat.ToOneByteVector();
830 String::FlatContent flat = string->GetFlatContent(); local
831 ASSERT(flat.IsTwoByte());
832 return flat.ToUC16Vector();
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pprof 62 # annotated with the flat and cumulative sample counts at each line.
67 # annotated with the flat and cumulative sample counts at each PC value.
645 my $flat = FlatProfile($reduced);
651 PrintDisassembly($libs, $flat, $cumulative, $main::opt_disasm);
653 PrintListing($total, $libs, $flat, $cumulative, $main::opt_list, 0);
661 PrintText($symbols, $flat, $cumulative, -1);
667 if (PrintDot($main::prog, $symbols, $profile, $flat, $cumulative, $total)) {
854 my $flat = FlatProfile($reduced);
857 PrintText($symbols, $flat, $cumulative, $line_limit);
889 my $flat = FlatProfile($reduced)
    [all...]
  /external/kernel-headers/original/linux/
input.h 57 * @flat: values that are within this value will be discarded by
74 __s32 flat; member in struct:input_absinfo
    [all...]
  /frameworks/base/services/input/
InputReader.cpp 886 "min=%0.3f, max=%0.3f, flat=%0.3f, fuzz=%0.3f, resolution=%0.3f\n",
887 name, range.source, range.min, range.max, range.flat, range.fuzz,
    [all...]
InputReader.h 1754 float flat; \/\/ normalized flat region size member in struct:android::JoystickInputMapper::Axis
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 274 final float flat = range.getFlat();
278 // Ignore axis values that are within the 'flat' region of the joystick axis center.
280 if (Math.abs(value) > flat) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_program.c 134 /* count recorded non-flat inputs */
141 m += info->in[i].flat ? 0 : 1;
147 /* Fill prog->in[] so that non-flat inputs are first and
160 unsigned j = info->in[i].flat ? m++ : n++;
187 /* (n == m) if m never increased, i.e. no flat inputs */
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_program.c 134 /* count recorded non-flat inputs */
141 m += info->in[i].flat ? 0 : 1;
147 /* Fill prog->in[] so that non-flat inputs are first and
160 unsigned j = info->in[i].flat ? m++ : n++;
187 /* (n == m) if m never increased, i.e. no flat inputs */
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 69 /** Add a child to the tree t. If child is a flat tree (a list), make all
129 // is a flat list (i.e., nil-rooted tree). All children of oldRoot
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipeWrite.cpp 132 // TODO: Return the LRU flat.
404 const SkFlatData* flat = fFlatDictionary.findAndReplace(*obj, fFlattenableHeap.flatToReplace(), local
407 int index = flat->index();
412 size_t flatSize = flat->flatSize();
415 fWriter.write(flat->data(), flatSize);
    [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 132 // TODO: Return the LRU flat.
404 const SkFlatData* flat = fFlatDictionary.findAndReplace(*obj, fFlattenableHeap.flatToReplace(), local
407 int index = flat->index();
412 size_t flatSize = flat->flatSize();
415 fWriter.write(flat->data(), flatSize);
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/
SoftMP3.cpp 111 mConfig->equalizerType = flat;
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 39 # 2009-03-04 David: Flat and Boxed pixel formats.
105 three formats called "flat row flat pixel", "boxed row flat pixel", and
112 Boxed row flat pixel::
126 Flat row flat pixel::
151 is 8 this is essentially the same as boxed row flat pixel; when the
628 an iterable that yields each row in boxed row flat pixel format.
665 `packed` is ``False`` the rows should be in boxed row flat pixe
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
msvs.py     [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast.h 371 unsigned flat:1; member in struct:ast_type_qualifier::__anon15803::__anon15804
glsl_parser_extras.cpp 466 if (q->flags.q.flat)
467 printf("flat ");
  /external/chromium_org/third_party/skia/src/core/
SkPictureRecord.cpp     [all...]
  /external/llvm/utils/
GenLibDeps.pl 9 # Syntax: GenLibDeps.pl [-flat] <directory_with_libraries_in_it> [path_to_nm_binary]
14 my $FLAT = 0;
23 if (/^-flat$/) { $FLAT = 1; next; }
24 if (/^-why/) { $WHY = 1; $FLAT = 1; next; }
40 if (!$FLAT) {
199 if ($FLAT) {
276 if ($FLAT) {
291 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
293 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" }
    [all...]
  /external/mesa3d/src/glsl/
ast.h 371 unsigned flat:1; member in struct:ast_type_qualifier::__anon26270::__anon26271
  /external/qemu/hw/
goldfish_events_device.c 78 /* 'fuzz;, and 'flat' ABS_XXX values are always zero here. */
80 uint32_t flat; member in struct:ABSEntry
463 * of (min,max,fuzz,flat) 32-bit values.
467 * flat corresponds to the flat position for JOEYDEV devices,
  /external/skia/src/core/
SkPictureRecord.cpp     [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_equalizer.cpp 116 /* FLAT */
284 /* FLAT */
330 if (equalizerType == flat)
  /development/samples/ControllerSample/src/com/example/controllersample/
GameView.java 469 final float flat = range.getFlat(); local
473 // Ignore axis values that are within the 'flat' region of the
477 if (Math.abs(value) > flat) {
    [all...]
  /development/ndk/platforms/android-3/include/linux/
input.h 41 __s32 flat; member in struct:input_absinfo
  /external/chromium_org/v8/tools/
profile.js 330 * Calculates a flat profile of callees starting from a node with
371 // If we have created a flat profile for the whole program, we don't

Completed in 1215 milliseconds

1 23 4 5 6 7