Searched defs:to (Results 1 - 3 of 3) sorted by relevance

/hardware/ti/wlan/wl1271/platforms/os/linux/src/
H A Dstack_profile.c18 * contributors may be used to endorse or promote products derived
67 unsigned long from, to; local
69 to = check_stack(&from);
77 real_sp = to;
82 /* run from the stack pointer down to the base */
83 for(i=from;(i < to);i+=4) {
87 /*printk("check_stack_start: from=%x to=%x data=%x\n",from,to,*(long *)(from+4));*/
88 return to;
94 unsigned long from, to; local
[all...]
/hardware/ril/mock-ril/src/cpp/
H A Dprotobuf_v8.cpp9 // Unless required by applicable law or agreed to in writing, software
143 // to = function() { return [ this.f0, this.f1, ... ] }
145 std::ostringstream from, to; local
147 to << "(function() { return [ ";
156 if (i > 0) to << ", ";
157 to << "this['" << descriptor->field(i)->camelcase_name() << "']";
162 to << " ]; })";
183 self->SetInternalField(3, Script::Compile(String::New(to.str().c_str()))->Run());
/hardware/ti/omap4xxx/hwc/
H A Dhwc.c10 * Unless required by applicable law or agreed to in writing, software
95 hwc_rect_t mirror_region; /* region of screen to mirror */
133 int pipe_fds[2]; /* pipe to event thread */
497 static inline void m_scale1(float m[3], int from, int to) argument
499 m[0] = m[0] * to / from;
500 m[1] = m[1] * to / from;
501 m[2] = m[2] * to / from;
549 /* trim to keep aspect ratio */
567 m = (center-from-target-center) * (scale-to-target) * (mirror) * (rotate) * (center-to
[all...]

Completed in 5017 milliseconds