HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 101 - 125 of 19005) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Interp.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off]
    [all...]
MatrixUtils.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) {
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6]
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Interp.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off]
    [all...]
MatrixUtils.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) {
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6]
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Interp.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off]
    [all...]
MatrixUtils.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) {
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6]
    [all...]
  /external/chromium_org/ppapi/api/
ppb_url_request_info.idl 3 * found in the LICENSE file.
103 * no credentials are sent with the request and cookies are ignored in the
162 * and handle URL requests. This API is used in conjunction with
170 * @param[in] instance A <code>PP_Instance</code> identifying one instance
177 [in] PP_Instance instance);
183 * @param[in] resource A <code>PP_Resource</code> corresponding to a
191 [in] PP_Resource resource);
197 * @param[in] request A <code>PP_Resource</code> corresponding to a
199 * @param[in] property A <code>PP_URLRequestProperty</code> identifying the
201 * @param[in] value A <code>PP_Var</code> containing the property value
    [all...]
ppb_message_loop.idl 3 * found in the LICENSE file.
23 * suddenly see their PP_Resource handles become invalid. In this case, calls
64 * Some special threads created by the system can not have message loops. In
75 * It is legal to create threads in your plugin without message loops, but
76 * PPAPI calls will fail unless explicitly noted in the documentation.
81 * from those calls will be queued in the message loop and never run. The same
97 * loop (via PostQuit with should_destroy = PP_TRUE). In this case, any
98 * tasks in the message queue will be lost.
103 * PP_FALSE. In this case, the system will assume the message loop will be
176 int32_t AttachToCurrentThread([in] PP_Resource message_loop)
    [all...]
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHealth.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 boolean registerAppConfiguration(in BluetoothHealthAppConfiguration config,
32 in IBluetoothHealthCallback callback);
33 boolean unregisterAppConfiguration(in BluetoothHealthAppConfiguration config);
34 boolean connectChannelToSource(in BluetoothDevice device, in BluetoothHealthAppConfiguration config);
35 boolean connectChannelToSink(in BluetoothDevice device, in BluetoothHealthAppConfiguration config,
37 boolean disconnectChannel(in BluetoothDevice device, in BluetoothHealthAppConfiguration config, int id)
    [all...]
IBluetooth.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
40 boolean setName(in String name);
57 boolean createBond(in BluetoothDevice device);
58 boolean cancelBondProcess(in BluetoothDevice device);
59 boolean removeBond(in BluetoothDevice device);
60 int getBondState(in BluetoothDevice device);
62 String getRemoteName(in BluetoothDevice device);
63 int getRemoteType(in BluetoothDevice device);
64 String getRemoteAlias(in BluetoothDevice device)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
in.js 2 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions in binary form must reproduce the above
10 // disclaimer in the documentation and/or other materials provided
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 assertFalse(0 in o);
33 assertFalse('x' in o);
34 assertFalse('y' in o);
35 assertTrue('toString' in o, "toString")
    [all...]
  /external/v8/test/mjsunit/
in.js 2 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions in binary form must reproduce the above
10 // disclaimer in the documentation and/or other materials provided
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 assertFalse(0 in o);
33 assertFalse('x' in o);
34 assertFalse('y' in o);
35 assertTrue('toString' in o, "toString")
    [all...]
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_flash_file.idl 3 * found in the LICENSE file.
25 * value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in case
29 [in] PP_Instance instance,
30 [in] str_t path,
31 [in] int32_t mode,
35 * success, one of the PP_ERROR_* in case of failure.
38 [in] PP_Instance instance,
39 [in] str_t path_from,
40 [in] str_t path_to);
44 * return value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
LittleEndien.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
38 * via a InputStream. All functions work as defined in DataInput, but
44 private BufferedInputStream in; field in class:LittleEndien
49 * stream is wrapped in a BufferedReader automatically.
50 * @param in The input stream to read from
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppb_buffer_dev.idl 3 * found in the LICENSE file.
16 * Allocates a buffer of the given size in bytes. The return value will have
21 [in] PP_Instance instance,
22 [in] uint32_t size_in_bytes);
29 [in] PP_Resource resource);
36 [in] PP_Resource resource,
44 [in] PP_Resource resource);
50 [in] PP_Resource resource);
  /external/chromium_org/ppapi/api/private/
ppb_flash_clipboard.idl 3 * found in the LICENSE file.
18 * These types correspond to clipboard types in WebKit.
59 * Deprecated in 5.0.
63 [in] PP_Instance instance_id,
64 [in] PP_Flash_Clipboard_Type clipboard_type,
65 [in] PP_Flash_Clipboard_Format format);
68 * Deprecated in 5.0.
71 PP_Var ReadData([in] PP_Instance instance_id,
72 [in] PP_Flash_Clipboard_Type clipboard_type,
73 [in] PP_Flash_Clipboard_Format format)
    [all...]
ppb_flash_font_file.idl 3 * found in the LICENSE file.
19 [in] PP_Instance instance,
20 [in] PP_BrowserFont_Trusted_Description description,
21 [in] PP_PrivateFontCharset charset);
25 PP_Bool IsFlashFontFile([in] PP_Resource resource);
28 * |output_length| should pass in the size of |output|. And it will return
29 * the actual length of returned data. |output| could be NULL in order to
30 * query the size of the buffer size needed. In that case, the input value of
35 [in] PP_Resource font_file,
36 [in] uint32_t table
    [all...]
ppb_flash_fullscreen.idl 3 * found in the LICENSE file.
18 * Checks whether the plugin instance is currently in fullscreen mode.
21 [in] PP_Instance instance);
29 [in] PP_Instance instance,
30 [in] PP_Bool fullscreen);
45 [in] PP_Instance instance,
46 [in] PP_Bool fullscreen);
49 * Gets the size of the screen in pixels. When going fullscreen, the instance
53 [in] PP_Instance instance,
ppb_platform_verification_private.idl 3 * found in the LICENSE file.
20 * trusted platform is a Chrome OS device in verified boot mode.
27 * @pram[in] instance A <code>PP_Instance</code> identifying one instance of
34 PP_Resource Create([in] PP_Instance instance);
40 * @param[in] resource A <code>PP_Resource</code> corresponding to a
48 PP_Bool IsPlatformVerification([in] PP_Resource resource);
53 * @param[in] service_id A <code>PP_Var</code> of type
56 * @param[in] challenge A <code>PP_Var</code> of type
71 * @param[in] callback A <code>PP_CompletionCallback</code> to be called after
78 [in] PP_Resource instance
    [all...]
  /external/chromium_org/ppapi/api/trusted/
ppb_broker_trusted.idl 3 * found in the LICENSE file.
32 PP_Resource CreateTrusted([in] PP_Instance instance);
37 PP_Bool IsBrokerTrusted([in] PP_Resource resource);
51 * Returns PP_ERROR_FAILED if called from an in-process plugin.
53 int32_t Connect([in] PP_Resource broker,
54 [in] PP_CompletionCallback connect_callback);
64 int32_t GetHandle([in] PP_Resource broker, [out] int32_t handle);
75 PP_Bool IsAllowed([in] PP_Resource broker);
  /external/chromium_org/tools/grit/grit/format/policy_templates/
writer_configuration.py 4 # found in the LICENSE file.
17 # The prefix of key names in config determines which writer will use their
23 if '_chromium' in defines:
37 elif '_google_chrome' in defines:
55 if 'mac_bundle_id' in defines:
  /external/valgrind/main/memcheck/tests/
wrap4.stdout.exp 2 in wrapper1-pre: fact(5)
3 in wrapper2-pre: fact(4)
4 in wrapper1-pre: fact(3)
5 in wrapper2-pre: fact(2)
6 in wrapper1-pre: fact(1)
7 in wrapper2-pre: fact(0)
8 in wrapper2-post: fact(0) = 1
9 in wrapper1-post: fact(1) = 1
10 in wrapper2-post: fact(2) = 2
11 in wrapper1-post: fact(3) =
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
ILearning_StochasticLinearRanker.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
29 boolean UpdateClassifier(in List<StringFloat> sample_1, in List<StringFloat> sample_2);
30 float ScoreSample(in List<StringFloat> sample);
32 boolean SetModelPriorWeight(in List<StringFloat> weight);
33 boolean SetModelParameter(in String key, in String value);
  /libcore/luni/src/main/java/java/io/
FilterInputStream.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
35 protected volatile InputStream in; field in class:FilterInputStream
43 * overridden. Subclasses should check for null in their constructors.
45 * @param in the input stream to filter reads on.
47 protected FilterInputStream(InputStream in) {
48 this.in = in;
53 return in.available();
64 in.close()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
setg.pass.cpp 41 char in[] = "ABC"; local
42 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]))
    [all...]

Completed in 647 milliseconds

1 2 3 45 6 7 8 91011>>