HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 1 - 25 of 15051) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbln.c 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 int in; local
38 in = (int)n;
39 if (in != n) {
41 in = INT_MAX
51 int in; local
66 int in; local
    [all...]
  /external/chromium_org/ppapi/api/private/
ppp_content_decryptor_private.idl 3 * found in the LICENSE file.
26 * @param[in] key_system A <code>PP_Var</code> of type
30 [in] PP_Instance instance,
31 [in] PP_Var key_system);
37 * @param[in] promise_id A reference for the promise that gets resolved or
40 * @param[in] server_certificate A <code>PP_Var</code> of type
44 [in] PP_Instance instance,
45 [in] uint32_t promise_id,
46 [in] PP_Var server_certificate);
51 * containing data for use in generating the request
    [all...]
ppb_find_private.idl 3 * found in the LICENSE file.
17 * This is a private interface for doing browser Find in the PDF plugin.
22 * handle find requests in the renderer. This will only succeed if the plugin
24 * result in the renderer handing over all responsibility for doing find to
28 * In the case that the plugin is loaded directly as the top level document,
29 * this function does not need to be called. In that case the plugin is
37 [in] PP_Instance instance);
41 * there are no matches 0 should be passed in. Only when the plugin has
42 * finished searching should it pass in the final count with final_result set
46 [in] PP_Instance instance
    [all...]
ppb_uma_private.idl 3 * found in the LICENSE file.
22 * sample given in milliseconds in the histogram given by |name|, possibly
26 void HistogramCustomTimes([in] PP_Instance instance,
27 [in] PP_Var name,
28 [in] int64_t sample,
29 [in] int64_t min,
30 [in] int64_t max,
31 [in] uint32_t bucket_count);
35 * in the histogram given by |name|, possibly creating the histogram if i
    [all...]
ppp_find_private.idl 3 * found in the LICENSE file.
13 * results will be updated asynchronously via NumberOfFindResultsChanged in
15 * called in the case of the search term changing.
17 * Return PP_FALSE if the plugin doesn't support find in page. Consequently,
20 PP_Bool StartFind([in] PP_Instance instance,
21 [in] str_t text,
22 [in] PP_Bool case_sensitive);
27 void SelectFindResult([in] PP_Instance instance,
28 [in] PP_Bool forward);
34 void StopFind([in] PP_Instance instance)
    [all...]
  /external/jemalloc/include/jemalloc/internal/
private_unnamespace.sh 3 for symbol in `cat $1` ; do
  /external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
tolower_many.pass.cpp 32 std::string in("\xDA A\x07.a1");
34 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == '\xFA');
36 assert(in[1] == ' ');
37 assert(in[2] == 'a');
38 assert(in[3] == '\x07')
    [all...]
toupper_many.pass.cpp 32 std::string in("\xFA A\x07.a1");
34 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == '\xDA');
36 assert(in[1] == ' ');
37 assert(in[2] == 'A');
38 assert(in[3] == '\x07')
    [all...]
  /external/chromium_org/ppapi/api/
ppb_video_decoder.idl 3 * found in the LICENSE file.
45 * @param[in] instance A <code>PP_Instance</code> identifying the instance
52 [in] PP_Instance instance);
57 * @param[in] resource A <code>PP_Resource</code> identifying a resource.
64 [in] PP_Resource resource);
70 * @param[in] video_decoder A <code>PP_Resource</code> identifying the video
72 * @param[in] graphics3d_context A <code>PPB_Graphics3D</code> resource to use
74 * @param[in] profile A <code>PP_VideoProfile</code> specifying the video
76 * @param[in] allow_software_fallback A <code>PP_Bool</code> specifying
79 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upo
    [all...]
ppp_instance.idl 3 * found in the LICENSE file.
8 * pointers to methods that you must implement in your module.
18 * functions that you must implement in your module. These functions can be
32 * <code>PP_Instance</code> handle will be used in subsequent calls to
35 * It's possible for more than one instance to be created in a single module.
37 * <code>OnDestroy</code> in between, and should be prepared to maintain
43 * @param[in] instance A new <code>PP_Instance</code> identifying one
46 * @param[in] argc The number of arguments contained in <code>argn</code>
49 * @param[in] argn An array of argument names. These argument names ar
    [all...]
ppb_compositor_layer.idl 3 * found in the LICENSE file.
15 * based on the source RGBA values in layers with the RGBA values that are
16 * already in the destination framebuffer.
20 * This interface is still in development (Dev API status) and may change,
50 * @param[in] resource The <code>PP_Resource</code> to test.
56 PP_Bool IsCompositorLayer([in] PP_Resource resource);
64 * param[in] layer A <code>PP_Resource</code> corresponding to a compositor
66 * param[in] red A <code>float</code> for the red color component. It will be
68 * param[in] green A <code>float</code> for the green color component. It will
70 * param[in] blue A <code>float</code> for the blue color component. It wil
    [all...]
  /external/chromium_org/ppapi/api/trusted/
ppb_file_chooser_trusted.idl 3 * found in the LICENSE file.
27 * @param[in] chooser The file chooser resource.
28 * @param[in] save_as A <code>PP_Bool</code> value indicating if this dialog
30 * @param[in] suggested_file_name If saving, the suggested name for the
32 * @param[in] callback A <code>CompletionCallback</code> to be called after
40 [in] PP_Resource chooser,
41 [in] PP_Bool save_as,
42 [in] PP_Var suggested_file_name,
43 [in] PP_CompletionCallback callback);
52 * @param[in] chooser The file chooser resource
    [all...]
ppb_url_loader_trusted.idl 3 * found in the LICENSE file.
19 [in] PP_Instance pp_instance,
20 [in] PP_Resource pp_resource,
21 [in] int64_t bytes_sent,
22 [in] int64_t total_bytes_to_be_sent,
23 [in] int64_t bytes_received,
24 [in] int64_t total_bytes_to_be_received);
32 void GrantUniversalAccess([in] PP_Resource loader);
48 [in] PP_Resource loader,
49 [in] PP_URLLoaderTrusted_StatusCallback cb)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
scan_is.pass.cpp 29 const std::string in(" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
32 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in.data() == 0)
    [all...]
scan_not.pass.cpp 29 const std::string in(" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
32 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 2)
    [all...]
tolower_many.pass.cpp 26 std::string in(" A\x07.a1");
28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == ' ');
30 assert(in[1] == 'a');
31 assert(in[2] == '\x07');
32 assert(in[3] == '.')
    [all...]
toupper_many.pass.cpp 26 std::string in(" A\x07.a1");
28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == ' ');
30 assert(in[1] == 'A');
31 assert(in[2] == '\x07');
32 assert(in[3] == '.')
    [all...]
  /external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
scan_is.pass.cpp 29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
32 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in.data() == 0)
    [all...]
scan_not.pass.cpp 29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
32 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 2)
    [all...]
tolower_many.pass.cpp 26 std::wstring in(L" A\x07.a1");
28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == L' ');
30 assert(in[1] == L'a');
31 assert(in[2] == L'\x07');
32 assert(in[3] == L'.')
    [all...]
toupper_many.pass.cpp 26 std::wstring in(L" A\x07.a1");
28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == L' ');
30 assert(in[1] == L'A');
31 assert(in[2] == L'\x07');
32 assert(in[3] == L'.')
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppp_video_capture_dev.idl 3 * found in the LICENSE file.
31 void OnDeviceInfo([in] PP_Instance instance,
32 [in] PP_Resource video_capture,
33 [in] PP_VideoCaptureDeviceInfo_Dev info,
34 [in] uint32_t buffer_count,
35 [in, size_is(buffer_count)] PP_Resource[] buffers);
41 void OnStatus([in] PP_Instance instance,
42 [in] PP_Resource video_capture,
43 [in] uint32_t status);
52 void OnError([in] PP_Instance instance
    [all...]
ppp_video_decoder_dev.idl 3 * found in the LICENSE file.
25 * given in the parameters cannot be allocated decoder should be destroyed.
34 * |texture_target| the type of texture used. Sample targets in use are
39 [in] PP_Instance instance,
40 [in] PP_Resource decoder,
41 [in] uint32_t req_num_of_bufs,
42 [in] PP_Size dimensions,
43 [in] uint32_t texture_target);
55 [in] PP_Instance instance,
56 [in] PP_Resource decoder
    [all...]
ppp_scrollbar_dev.idl 3 * found in the LICENSE file.
19 void ValueChanged([in] PP_Instance instance,
20 [in] PP_Resource scrollbar,
21 [in] uint32_t value);
28 void OverlayChanged([in] PP_Instance instance,
29 [in] PP_Resource scrollbar,
30 [in] PP_Bool overlay);
  /external/clang/test/CodeGen/
arm64_vshift.c 4 int8x8_t test_vqshl_n_s8(int8x8_t in) {
6 // CHECK: call <8 x i8> @llvm.aarch64.neon.sqshl.v8i8(<8 x i8> %in, <8 x i8> <i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1>)
7 return vqshl_n_s8(in, 1);
10 int16x4_t test_vqshl_n_s16(int16x4_t in) {
12 // CHECK: call <4 x i16> @llvm.aarch64.neon.sqshl.v4i16(<4 x i16> %in, <4 x i16> <i16 1, i16 1, i16 1, i16 1>)
13 return vqshl_n_s16(in, 1);
16 int32x2_t test_vqshl_n_s32(int32x2_t in) {
18 // CHECK: call <2 x i32> @llvm.aarch64.neon.sqshl.v2i32(<2 x i32> %in, <2 x i32> <i32 1, i32 1>)
19 return vqshl_n_s32(in, 1);
22 int64x1_t test_vqshl_n_s64(int64x1_t in) {
    [all...]

Completed in 2481 milliseconds

1 2 3 4 5 6 7 8 91011>>