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

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/StdLib/PosixLib/Stringlist/
stringlist.c 61 StringList *sl; local
63 sl = malloc(sizeof(StringList));
64 if (sl == NULL)
67 sl->sl_cur = 0;
68 sl->sl_max = _SL_CHUNKSIZE;
69 sl->sl_str = malloc(sl->sl_max * sizeof(char *));
70 if (sl->sl_str == NULL) {
71 free(sl);
72 sl = NULL;
    [all...]
  /external/e2fsprogs/intl/
os2compat.c 59 size_t sl = strlen (root); local
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1);
61 memcpy (_nlos2_libdir, root, sl);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
73 size_t sl = strlen (root); local
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1);
75 memcpy (_nlos2_localealiaspath, root, sl);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
87 size_t sl = strlen (root); local
88 _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1)
    [all...]
  /external/elfutils/src/
debugpred.h 33 const unsigned long int *sl = &__start_predict_line; local
38 printf ("%s:%lu: wrong=%lu, correct=%lu%s\n", *sf, *sl, s[0], s[1],
40 ++sl;
  /external/pdfium/third_party/agg23/
agg_render_scanlines.h 22 void render_scanlines(Rasterizer& ras, Scanline& sl, Renderer& ren, bool no_smooth)
25 sl.reset(ras.min_x(), ras.max_x());
27 while(ras.sweep_scanline(sl, no_smooth)) {
28 ren.render(sl);
35 Scanline& sl,
46 render_scanlines(ras, sl, r);
agg_renderer_scanline.h 42 template<class Scanline> void render(const Scanline& sl)
44 int y = sl.y();
50 unsigned num_spans = sl.num_spans();
51 typename Scanline::const_iterator span = sl.begin();
  /external/testng/src/test/resources/
create-serviceloader-jar.sh 6 rm -rf /tmp/sl
7 mkdir /tmp/sl
8 cd /tmp/sl
  /external/libvpx/libvpx/test/
svc_test.cc 79 for (int sl = 0; sl < number_spatial_layers_; ++sl) {
81 const int layer = sl * number_temporal_layers_ + tl;
89 int sl, spatial_layer_target; local
95 for (sl = 0; sl < spatial_layers; ++sl) {
96 if (svc_params_.scaling_factor_den[sl] > 0) {
97 alloc_ratio[sl]
    [all...]
svc_datarate_test.cc 77 for (int sl = 0; sl < num_spatial_layers; ++sl)
78 ref_frame_config->update_buffer_slot[sl] = 0;
80 for (int sl = 0; sl < num_spatial_layers; ++sl) {
82 ref_frame_config->lst_fb_idx[sl] = sl;
83 if (sl) {
    [all...]
  /external/libvpx/libvpx/examples/
vp9_spatial_svc_encoder.c 52 ARG_DEF("sl", "spatial-layers", 1, "number of spatial SVC layers");
88 ARG_DEF("bl", "bitrates", 1, "bitrates[sl * num_tl + tl]");
450 unsigned int sl, tl; local
455 for (sl = 0; sl < cfg->ss_number_layers; ++sl) {
457 const int layer = sl * cfg->ts_number_layers + tl;
489 unsigned int sl, tl; local
493 printf("Rate control layer stats for sl%d tl%d layer(s):\n\n",
495 for (sl = 0; sl < cfg->ss_number_layers; ++sl)
599 int sl; local
681 int sl; local
763 unsigned int sl, tl; local
    [all...]
svc_encodeframe.c 287 int sl, tl, spatial_layer_target; local
292 for (sl = 0; sl < svc_ctx->spatial_layers; ++sl) {
293 total_bitrate += si->bitrates[sl * svc_ctx->temporal_layers +
296 enc_cfg->ss_target_bitrate[sl * svc_ctx->temporal_layers] +=
297 (unsigned int)si->bitrates[sl * svc_ctx->temporal_layers + tl];
298 enc_cfg->layer_target_bitrate[sl * svc_ctx->temporal_layers + tl] =
299 si->bitrates[sl * svc_ctx->temporal_layers + tl];
300 if (tl > 0 && (si->bitrates[sl * svc_ctx->temporal_layers + tl] <
380 int i, sl, tl; local
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-invalid.cpp 8 template<class Scanline> bool sweep_scanline(Scanline& sl)
18 void render_scanlines_aa_solid(Rasterizer& ras, Scanline& sl, BaseRenderer& ren, const ColorT& color)
20 while(ras.sweep_scanline(sl))
30 void render_ctrl(Rasterizer& ras, Scanline& sl, Renderer& r, Ctrl& c)
33 render_scanlines_aa_solid(ras, sl, r, c.color(i));
46 agg::scanline_u8 sl; local
48 agg::render_ctrl(ras, sl, ren_base, m_polygons);
  /external/nist-sip/java/gov/nist/javax/sip/header/
StatusLine.java 71 StatusLine sl = (StatusLine) matchObj;
73 if (sl.matchExpression != null)
74 return sl.matchExpression.match(this.encode());
76 if (sl.sipVersion != null && !sl.sipVersion.equals(sipVersion))
78 if (sl.statusCode != 0) {
80 int hiscode = sl.statusCode;
81 String codeString = Integer.toString(sl.statusCode);
86 if (statusCode != sl.statusCode)
90 if (sl.reasonPhrase == null || reasonPhrase == sl.reasonPhrase
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
ScalingList.java 60 ScalingList sl = new ScalingList(); local
61 sl.scalingList = new int[sizeOfScalingList];
68 sl.useDefaultScalingMatrixFlag = (j == 0 && nextScale == 0);
70 sl.scalingList[j] = nextScale == 0 ? lastScale : nextScale;
71 lastScale = sl.scalingList[j];
73 return sl;
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/helper/
SpringLayoutHelper.java 33 final SpringLayout sl; field in class:SpringLayoutHelper
37 sl = springLayout;
42 sl.putConstraint(SpringLayout.WEST, componentToPlace, horizontalPadding, SpringLayout.EAST, relativeTo);
44 sl.putConstraint(SpringLayout.NORTH, componentToPlace, verticalPadding, SpringLayout.NORTH, relativeTo);
56 sl.putConstraint(SpringLayout.WEST, componentToPlace, horizontalPadding, SpringLayout.WEST, relativeTo);
58 sl.putConstraint(SpringLayout.NORTH, componentToPlace, verticalPadding, SpringLayout.SOUTH, relativeTo);
  /external/clang/test/CodeGen/
zvector.c 16 volatile vector signed long long sl, sl2; variable
50 // CHECK: store volatile <2 x i64> [[VAL]], <2 x i64>* @sl
51 sl = sl2;
87 // CHECK: store volatile <2 x i64> [[VAL]], <2 x i64>* @sl
88 sl = +sl2;
113 sl = -sl2;
346 // CHECK: [[VAL1:%[^ ]+]] = load volatile <2 x i64>, <2 x i64>* @sl
349 sl = sl + sl2;
350 // CHECK: [[VAL1:%[^ ]+]] = load volatile <2 x i64>, <2 x i64>* @sl
    [all...]
  /external/deqp/modules/glshared/
glsShaderLibraryCase.hpp 52 const glu::sl::ShaderCaseSpecification& specification);
66 const glu::sl::ShaderCaseSpecification m_spec;
glsShaderConstExprTests.cpp 40 static void addOutputVar (glu::sl::ValueBlock* dst, glu::DataType type, float output)
42 dst->outputs.push_back(glu::sl::Value());
45 glu::sl::Value& value = dst->outputs.back();
158 glu::sl::ShaderCaseSpecification spec;
161 spec.expectResult = glu::sl::EXPECT_PASS;
162 spec.caseType = glu::sl::CASETYPE_VERTEX_ONLY;
179 glu::sl::ShaderCaseSpecification spec;
182 spec.expectResult = glu::sl::EXPECT_PASS;
183 spec.caseType = glu::sl::CASETYPE_FRAGMENT_ONLY;
212 glu::sl::ShaderCaseSpecification spec
    [all...]
glsShaderLibrary.cpp 35 class CaseFactory : public glu::sl::ShaderCaseFactory
50 tcu::TestCase* createCase (const std::string& name, const std::string& description, const glu::sl::ShaderCaseSpecification& spec)
78 return glu::sl::parseFile(m_testCtx.getArchive(), fileName, &caseFactory);
  /external/scapy/scapy/contrib/
carp.py 65 sl = []
68 sl.append(inet_aton(i))
69 sl.sort()
71 for i in sl:
  /external/testng/src/main/java/org/testng/mustache/
Model.java 20 SubModel sl = new SubModel(); local
21 sl.variable = variable;
22 sl.subModel = subModel;
23 m_subModels.push(sl);
  /external/tensorflow/tensorflow/python/autograph/lang/
special_functions_test.py 46 sl = list_ops.tensor_list_stack(l, element_dtype=dtypes.int32)
48 self.assertAllEqual(self.evaluate(sl), [])
53 sl = list_ops.tensor_list_stack(l, element_dtype=dtypes.int32)
55 self.assertAllEqual(self.evaluate(sl), [])
60 sl = list_ops.tensor_list_stack(l, element_dtype=dtypes.int32)
62 self.assertAllEqual(self.evaluate(sl), [])
77 sl = list_ops.tensor_list_stack(l, element_dtype=dtypes.int32)
79 self.assertAllEqual(self.evaluate(sl), [[1, 2], [3, 4]])
85 sl = l.stack()
87 self.assertAllEqual(self.evaluate(sl), [[1, 2], [3, 4]]
    [all...]
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
mutex.pass.cpp 138 std::scoped_lock sl{};
139 static_assert((std::is_same<decltype(sl), std::scoped_lock<>>::value), "" );
142 std::scoped_lock sl{m1};
143 static_assert((std::is_same<decltype(sl), std::scoped_lock<decltype(m1)>>::value), "" );
146 std::scoped_lock sl{m1, m2};
147 static_assert((std::is_same<decltype(sl), std::scoped_lock<decltype(m1), decltype(m2)>>::value), "" );
150 std::scoped_lock sl{m1, m2, m3};
151 static_assert((std::is_same<decltype(sl), std::scoped_lock<decltype(m1), decltype(m2), decltype(m3)>>::value), "" );
  /external/strace/
mpers_test.sh 55 long sl;
69 long sl;
102 int${size}_t sl;
116 int${size}_t sl;
  /external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/
load_balancer_api.cc 30 grpc_grpclb_serverlist* sl = static_cast<grpc_grpclb_serverlist*>(*arg); local
36 ++sl->num_servers;
193 grpc_grpclb_serverlist* sl = static_cast<grpc_grpclb_serverlist*>( local
199 res.server_list.servers.arg = sl;
202 gpr_free(sl);
207 if (sl->num_servers > 0) {
208 sl->servers = static_cast<grpc_grpclb_server**>(
209 gpr_zalloc(sizeof(grpc_grpclb_server*) * sl->num_servers));
212 decode_arg.serverlist = sl;
218 grpc_grpclb_destroy_serverlist(sl);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_svc_layercontext.c 35 int sl, tl, i; local
63 for (sl = 0; sl < oxcf->ss_number_layers; ++sl) {
64 svc->last_layer_dropped[sl] = 0;
65 svc->drop_spatial_layer[sl] = 0;
66 svc->ext_frame_flags[sl] = 0;
67 svc->lst_fb_idx[sl] = 0;
68 svc->gld_fb_idx[sl] = 1;
69 svc->alt_fb_idx[sl] = 2
192 int sl, tl, layer = 0, spatial_layer_target; local
682 int sl = svc->spatial_layer_id = svc->spatial_layer_to_encode; local
701 int sl = svc->spatial_layer_id; local
790 int sl = 0; local
855 int sl; local
926 int sl, tl; local
942 int sl, tl; local
966 int sl, tl; local
1039 int sl = svc->spatial_layer_id; local
    [all...]

Completed in 4731 milliseconds

1 2 3 4 5 6 7 8 9