/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayMath.cpp | 150 SkScalar input = parameters[0].fOperand.fScalar; local 154 scalarResult = SkScalarAbs(input); 157 scalarResult = SkScalarACos(input); 160 scalarResult = SkScalarASin(input); 163 scalarResult = SkScalarATan2(input, SK_Scalar1); 166 scalarResult = SkScalarATan2(input, parameters[1].fOperand.fScalar); 169 scalarResult = SkIntToScalar(SkScalarCeil(input)); 172 scalarResult = SkScalarCos(input); 175 scalarResult = SkScalarExp(input); 178 scalarResult = SkIntToScalar(SkScalarFloor(input)); [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkTileImageFilter.cpp | 21 SkImageFilter* input = getInput(0); local 23 if (input && !input->filterImage(proxy, src, ctm, &source, &localOffset)) {
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
splitpath_test.c | 36 /* input path */ 37 const char *input; member in struct:Test_Entry 114 headlen = test->splitpath(test->input, &tail); 118 funcname, test->input, (unsigned long)test->headlen, 126 funcname, test->input, test->tail, tail);
|
/external/chromium_org/tools/gn/ |
parser_unittest.cc | 15 bool GetTokens(const InputFile* input, std::vector<Token>* result) { 18 *result = Tokenizer::Tokenize(input, &err); 22 void DoParserPrintTest(const char* input, const char* expected) { 25 input_file.SetContents(input); 38 void DoExpressionPrintTest(const char* input, const char* expected) { 41 input_file.SetContents(input); 56 void DoParserErrorTest(const char* input, int err_line, int err_char) { 58 input_file.SetContents(input); 74 void DoExpressionErrorTest(const char* input, int err_line, int err_char) { 76 input_file.SetContents(input); 129 const char* input = "(foo(1)) + (a + (b - c) + d)"; local 147 const char* input = "5 - 1 - 2\\n"; local 158 const char* input = local 271 const char* input = local 300 const char* input = local 348 const char* input = "{cc_test(\\"foo\\") {{foo=1}\\n{}}}"; local 416 const char* input = "a = b[1]"; local 446 const char* input = "func(\\"stuff\\") {\\n}"; local 460 const char* input = "a = b + c && d || e"; local [all...] |
string_utils.cc | 32 // Given the character input[i] indicating the $ in a string, locates the 38 const char* input, size_t size, 51 if (input[*i] == '{') { 65 if (!Tokenizer::IsIdentifierFirstChar(input[*i])) { 76 while (*i < size && Tokenizer::IsIdentifierContinuingChar(input[*i])) 87 } else if (input[*i] != '}') { 98 *identifier = base::StringPiece(&input[begin_offset], 133 const char* input = &literal.value().data()[1]; local 139 if (input[i] == '\\') { 141 switch (input[i + 1]) [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/ |
input_test.py | 7 """Unit tests for the input.py file.""" 9 import gyp.input namespace 18 self.nodes[x] = gyp.input.DependencyGraphNode(x)
|
/external/chromium_org/v8/src/ |
hydrogen-dce.cc | 46 HValue* input = instr->OperandAt(i); local 47 if (!input->CheckFlag(HValue::kIsLive)) { 48 input->SetFlag(HValue::kIsLive); 49 worklist->Add(input, zone()); 50 if (FLAG_trace_dead_code_elimination) PrintLive(instr, input);
|
/external/chromium_org/v8/test/mjsunit/tools/ |
profviz.js | 50 function input() { function 68 psc.collectData(input, distortion);
|
/external/compiler-rt/test/Unit/ppc/ |
fixtfdi_test.c | 457 DD input; local 461 input.hi = testCases[i].xhi; 462 input.lo = testCases[i].xlo; 465 computed_result = __fixtfdi(input.ld); 468 printf("Error for __fixtfdi at %La = ( %a , %a ):\n", input.ld, input.hi, input.lo);
|
/external/compiler-rt/test/timing/ |
floatdidf.c | 19 INPUT_TYPE input[INPUT_SIZE]; local 24 // Initialize the input array with data of various sizes. 26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63); 34 FUNCTION_NAME(input[i]);
|
floatdisf.c | 19 INPUT_TYPE input[INPUT_SIZE]; local 24 // Initialize the input array with data of various sizes. 26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63); 34 FUNCTION_NAME(input[i]);
|
floatdixf.c | 19 INPUT_TYPE input[INPUT_SIZE]; local 24 // Initialize the input array with data of various sizes. 26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63); 34 FUNCTION_NAME(input[i]);
|
floatundidf.c | 16 uint64_t input[INPUT_SIZE]; local 21 // Initialize the input array with data of various sizes. 23 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63); 31 __floatundidf(input[i]);
|
floatundisf.c | 19 INPUT_TYPE input[INPUT_SIZE]; local 24 // Initialize the input array with data of various sizes. 26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63); 34 FUNCTION_NAME(input[i]);
|
floatundixf.c | 19 INPUT_TYPE input[INPUT_SIZE]; local 24 // Initialize the input array with data of various sizes. 26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63); 34 FUNCTION_NAME(input[i]);
|
/external/e2fsprogs/resize/ |
online.c | 25 struct ext2_new_group_input input; local 133 input.group = i; 134 input.block_bitmap = new_fs->group_desc[i].bg_block_bitmap; 135 input.inode_bitmap = new_fs->group_desc[i].bg_inode_bitmap; 136 input.inode_table = new_fs->group_desc[i].bg_inode_table; 137 input.blocks_count = sb->s_blocks_per_group; 139 input.blocks_count = new_fs->super->s_blocks_count - 143 input.reserved_blocks = (blk_t) (percent * input.blocks_count 147 printf("new block bitmap is at 0x%04x\n", input.block_bitmap) [all...] |
/external/harfbuzz_ng/util/ |
main-font-text.hh | 40 input (&options), 50 if (argc && !input.text && !input.text_file) input.text = argv[0], argc--, argv++; 55 if (!input.text && !input.text_file) 56 input.text_file = "-"; 63 while ((text = input.get_line (&text_len))) 64 consumer.consume_line (buffer, text, text_len, input.text_before, input.text_after) 75 text_options_t input; member in struct:main_font_text_t [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/input/ |
MouseInput.java | 33 package com.jme3.input; 38 public interface MouseInput extends Input {
|
RawInputListener.java | 33 package com.jme3.input; 35 import com.jme3.input.event.*; 38 * An interface used for receiving raw input from devices. 43 * Called before a batch of input will be sent to this 49 * Called after a batch of input was sent to this
|
TouchInput.java | 33 package com.jme3.input; 38 public interface TouchInput extends Input {
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/ |
JoyAxisTrigger.java | 33 package com.jme3.input.controls; 35 import com.jme3.input.Joystick;
|
JoyButtonTrigger.java | 33 package com.jme3.input.controls; 35 import com.jme3.input.Joystick;
|
MouseAxisTrigger.java | 33 package com.jme3.input.controls; 35 import com.jme3.input.MouseInput;
|
TouchTrigger.java | 33 package com.jme3.input.controls;
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/ |
DummyInput.java | 33 package com.jme3.input.dummy; 35 import com.jme3.input.Input; 36 import com.jme3.input.RawInputListener; 39 * DummyInput as an implementation of <code>Input</code> that raises no 40 * input events. 44 public class DummyInput implements Input { 50 throw new IllegalStateException("Input already initialized."); 57 throw new IllegalStateException("Input not initialized."); 62 throw new IllegalStateException("Input not initialized.") [all...] |